First time here? Check out the FAQ!

Ask Your Question
1

replacing even powers of sin(x) by powers of (1-cos(x)^2)

asked 2 years ago

rhaynes74 gravatar image

Hi folks, I would like to force sage to take an expression like

f = cos(x)(sin(x))^2+cos(x)^3(sin(x))^5

and replace the even powers of sin(x) by powers of (1-cos(x)^2), so that the above would become

f=cos(x)(1-cos(x)^2)+cos(x)^3(1-cos(x)^2)^2*sin(x)

Any suggestions?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
5

answered 2 years ago

Max Alekseyev gravatar image

One can use wildcards for this purpose:

f = cos(x)*(sin(x))^2+cos(x)^3*(sin(x))^5
w = SR.wild(0)
f.subs({sin(x)^w:((1-cos(x)^2)^floor(w/2)*sin(x)^(w-2*floor(w/2)))})
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2 years ago

Seen: 222 times

Last updated: Aug 03 '22