First time here? Check out the FAQ!
answered 2010-08-18 19:41:34 +0100
You can integrate sin(x)*tan(x) in Sage by using the integrate command:
sage: integrate(sin(x)*tan(x), x) -1/2*log(sin(x) - 1) + 1/2*log(sin(x) + 1) - sin(x)
You can find some more examples in the tutorial.