find the root of tan(x)    
   Find the root of Tan(x)?
if you are looking for the general answer:
sage: tan(x).solve(x, to_poly_solve="force")
[x == pi*z5]
Here z5 can be any integer.
I was looking for that too :) Thank you.
Similarly, I came across
tan(x)._maxima_().to_poly_solve(x).sage()
which I think does the same.
Asked: 2020-06-19 04:56:51 +0100
Seen: 539 times
Last updated: Jun 20 '20
 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.
            
And your question is ?