Opened 7 years ago
Last modified 4 years ago
#4630 new defect
Rethink mathematical simplifications — at Initial Version
Reported by: | Henning Kiel | Owned by: | somebody |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | *unknown* | Version: | v1.13.0-dev-nightly |
Keywords: | Cc: | Martin Sjölund, Francesco Casella, Patrick Täuber, Lennart Ochel, Willi Braun, Volker Waurich |
Description
I propose to have in this ticket a list of (more complex) mathematical simplifications to be implemented in OMC (ExpressionSimplify).
To quote sjoelund.se from github discussion:
acos(cos(x)) is not equal to x... For example acos(cos(13)) = 0.4336293856408271 And cos(acos(13)) is an error, not 13... acos(cos(x)) could be mod(x, pi)?
The same argumentation holds for typical math simplification
e^(ln(x)) = x
which is an error for x<0
always correct simplifications
- ln(e(x)) = x
- sin2(x)+cos2(x) = 1
- cosh2(x) - sinh2(x) = 1
- sin(acos(x)) = sqrt(1-x2)
- cos(asin(x)) = sqrt(1-x2)
problematic simplifications
- asin(sin(x)) = ?
- tan(atan(x) = ?
- atan(tan(x)) = ?
- sin(asin(x)) = ?
- acos(cos(x)) = mod(x, pi) -> is wrong, it is a triangle function
- asin(sin(x)) is shifted triangle function
incorrect simplifications
- cos(acos(x)) = x (only true for -1<=x<=1)
- sin(asin(x)) = x (only true for -1<=x<=1)
Note:
See TracTickets
for help on using tickets.