Ask Your Question
0

Solve equations with sin(x)

asked 10 years ago

wasa gravatar image

Hi. I want to know why sage can't solve the euqations: [4sin(x)+y==5,sin(x)==y] (It's so easy!)and it just gives back: [sin(x)==y,y+4sin(x)==5]. Can you help me?

Preview: (hide)

Comments

What command did you give?

rws gravatar imagerws ( 10 years ago )

2 Answers

Sort by » oldest newest most voted
2

answered 10 years ago

rws gravatar image

Congratulations, you have found a bug! I have reported it at

http://trac.sagemath.org/ticket/16753

Preview: (hide)
link
0

answered 10 years ago

dazedANDconfused gravatar image

Solving equations is done through the solve command, which is documented here. I went to a Sage cell server and typed in:

solve(5-4*sin(x)==sin(x),x)

and got an answer: [x == 1/2*pi]. Of course, since the trig functions are periodic there are an infinite number of solutions.

Since you haven't given the code that resulted in the output you describe, it's impossible for me to know what went wrong. Always provide your code; it makes it easier to diagnose what is wrong.

Preview: (hide)
link

Comments

On sagenb.org using var('x,y'); solve([y==sin(x),y+4*sin(x)==5],x,y) I get [y == sin(x), y + 4*sin(x) == 5] as a solution

god.one gravatar imagegod.one ( 10 years ago )

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: 10 years ago

Seen: 768 times

Last updated: Aug 04 '14