Ask Your Question
0

Solve a system

asked 2018-05-04 18:27:50 +0200

Stu gravatar image

Why this command doesn't give me any solution :

 solve([2*x+y==0,x-2*y==1],x)

I suppose because, there is an unique solution and x doesn't depend on y.


Now I would like to know when we solve an equation such that $$f(z)= 0\iff Re(x)+iIm(x)=0 $$ with $z=x+iy$ and $f(z)=5z-i\overline{z}^2+3+2i$

real(x)=-2*x*y + 5*x + 3
im(x) = -x^2 + y^2 + 5*y + 2
solve([real(x)==0, im(x)==0], x)

Is this command the right one to solve this problem ?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2018-05-04 19:10:56 +0200

calc314 gravatar image

For the first solve question, you need to specify that you are solving for x and y.

solve([2*x+y==0,x-2*y==1],[x,y])

For the second question, you can do the following:

var('x y')
assume(x,'real')
assume(y,'real')
z=x+i*y
f=5*z-i*conjugate(z)^2+3+2*i
solve([f.real(),f.imag()],[x,y])
edit flag offensive delete link more

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: 2018-05-04 18:27:50 +0200

Seen: 443 times

Last updated: May 04 '18