Why is the assumption I made being changed by the next assumption I do on another variable ?
The assumpitons on Phi_geod and Phi_dot_geod are being changed by the assumptions on the variables lambda_geod and lambda_dot_geod.
Code:
syms Phi_geod(t) lambda_geod(t)
syms Phi_dot_geod(t) lambda_dot_geod(t)
assume(Phi_geod(t),"real");
assumptions(Phi_geod)
ans = ![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1659671/image.png)
assume(lambda_geod(t),"real");
assumptions(Phi_geod)
ans = ![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1659676/image.png)
assume(Phi_dot_geod(t),"real");
assume(lambda_dot_geod(t),"real");
assumptions(Phi_geod)
ans = ![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1659681/image.png)