triginometry



Semyon Glazyrin wrote:
> Hello!
>
> Why maxima doesn't solve the following equation?
>   
There is no method available in Maxima's solve program for this equation.
If you know of a way to solve it, perhaps you can describe it and it can
be added to Maxima.

> (%i1) solve(A*sin(x)+B*cos(x)=C,x);
>                                        cos(x) B - C
> (%o1)                      [sin(x) = - ------------]
>                                             A
>
> And how can I run maxima in debug mode so that I could see how lisp
> functions are called? 
You can look at the code and use the lisp function trace.

For example
   :lisp  (trace solve solve1a)

RJF