All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Just Math
Simultaneous Settlement VII (Posted on 2023-01-08) Difficulty: 3 of 5
Each of m and n is a complex number that satisfies this set of simultaneous equations:
  • mn - n2 = 3
  • mn + 2m2 = 1
Without solving for m and n, determine the value of mn

Note: mn is the product of m and n, rather than their concatenations.

See The Solution Submitted by K Sengupta    
Rating: 5.0000 (1 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Solution computer solution | Comment 1 of 6
Refer to mn as y:

y-n^2=3
y+2*(y/n)^2=1

Program:

syms y n
eq1=y-n^2==3;
eq2=y+2*(y/n)^2==1;
s=solve([eq1 eq2],y,n);
s.y

finds

2/3 - (5^(1/2)*1i)/3
(5^(1/2)*1i)/3 + 2/3
2/3 - (5^(1/2)*1i)/3
(5^(1/2)*1i)/3 + 2/3

In easier-to-read form:

y = mn = 2/3 +/- sqrt(5)/3 i

repeated twice for some reason, probably paired with different values of n.

Approximately

          0.666666666666667 -      0.74535599249993i
          0.666666666666667 +      0.74535599249993i

  Posted by Charlie on 2023-01-08 08:56:36
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (9)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information