Ask Your Question
1

Quadratic equation with complex coefficients

asked 2019-01-08 22:16:03 +0200

EvgenyM gravatar image

updated 2019-01-08 23:11:26 +0200

tmonteil gravatar image

How can I solve x^2 - (1 + I)*x + 6 + 3*I == 0 to get answers z = 3*I and z = 1 - 2*I ? When I enter

solve(x^2 - (1 + I)*x + 6 + 3*I == 0, x)

I get

[x == -1/2*sqrt(-10*I - 24) + 1/2*I + 1/2, x == 1/2*sqrt(-10*I - 24) + 1/2*I + 1/2]
edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2019-01-08 23:15:02 +0200

tmonteil gravatar image

The solutions are correct but they are not fully simplified.

sage: f= x^2 - (1 + I)*x + 6 + 3*I
sage: solve(f==0,x)
[x == -1/2*sqrt(-10*I - 24) + 1/2*I + 1/2, x == 1/2*sqrt(-10*I - 24) + 1/2*I + 1/2]

For each solution, you can simplify its right-hand-side as follows:

sage: [s.rhs().full_simplify() for s in solve(f==0,x)]
[3*I, -2*I + 1]
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: 2019-01-08 22:16:03 +0200

Seen: 516 times

Last updated: Jan 08 '19