On Jun 23, 10:58 am, kirchhoff <[email protected]> wrote:
> How to find symbolic solution for a generic equation of this kind
> A*sin(x)+B*cos(x)+C=0
>
> Thanks
>
> Renzo

Couldn't you do something like this:

A,B,C,x=var('A,B,C,x')
solve([A*sin(x)+B*cos(x)+C == 0],x)

Sage responds:
[sin(x) == -(B*cos(x) + C)/A]
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to