|   | 1 |  initial version  | 
In the documentation for solve there is an option which often helps solve these kinds of equations.
F = 2*(1-sin(x)) == 1-cos(x)
solve(F,x,to_poly_solve=True)
You should get
[x == pi + 2*pi*z38, x == 2*pi*z40 + arctan(4/3)]
where the z38 means an integer parameter.
|   | 2 |  No.2 Revision  | 
In the documentation for solve there is an option which often helps solve these kinds of equations.
F = 2*(1-sin(x)) == 1-cos(x)
solve(F,x,to_poly_solve=True)
You should getget something like
[x == pi + 2*pi*z38, x == 2*pi*z40 + arctan(4/3)]
where the z38 means an integer parameter.
 Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
 
                
                Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.