The solution of nonlinear equations.

Acrobat

New member
Joined
Aug 14, 2015
Messages
1
Help solve the following system of equations:

(x-x1)^2 + (y-y1)^2 + (z-z1)^2 = (R - R11)^2
(x-x2)^2 + (y-y2)^2 + (z-z2)^2 = (R - R21)^2
(x-x3^2 + (y-y1)^2 + (z-z3)^2 = (R - R31)^2
(x+R)^2 + (y+R)^2 + (z+R)^2 = L^2

xi,yi,zi,Rij,L - consts
 
Help solve the following system of equations:

(x-x1)^2 + (y-y1)^2 + (z-z1)^2 = (R - R11)^2
(x-x2)^2 + (y-y2)^2 + (z-z2)^2 = (R - R21)^2
(x-x3^2 + (y-y1)^2 + (z-z3)^2 = (R - R31)^2
(x+R)^2 + (y+R)^2 + (z+R)^2 = L^2

xi,yi,zi,Rij,L - consts

What are your thoughts?

Please share your work with us ...even if you know it is wrong

If you are stuck at the beginning tell us and we'll start with the definitions.

You need to read the rules of this forum. Please read the post titled "
Read before Posting" at the following URL:

http://www.freemathhelp.com/forum/th...Before-Posting
 
[Please h]elp solve the following system of equations:

(x - x1)2 + (y - y1)2 + (z - z1)2 = (R - R11)2
(x - x2)2 + (y - y2)2 + (z - z2)2 = (R - R21)2
(x - x3)2 + (y - y1)2 + (z - z3)2 = (R - R31)2
(x + R)2 + (y + R)2 + (z + R)2 = L2

xi, yi, zi, Rij, and L are constants
You have four non-linear equations in terms of five variables. This cannot be solved, other than in a parameterized manner.

By the way, is the subscript on the second "y" in the third equation supposed to be "1", or is it actually "3"?

Note: Wolfram Alpha's widget can solve the system. Unfortunately, I can't figure out how to tell it which of the letters are the variables, so it solves for things you don't want. Either way, though, clearly the solution is quite complex. You may be on your own here... Sorry.
 
Help solve the following system of equations:

(x-x1)^2 + (y-y1)^2 + (z-z1)^2 = (R - R11)^2
(x-x2)^2 + (y-y2)^2 + (z-z2)^2 = (R - R21)^2
(x-x3)^2 + (y-y1)^2 + (z-z3)^2 = (R - R31)^2
(x+R)^2 + (y+R)^2 + (z+R)^2 = L^2

xi,yi,zi,Rij,L - consts

Assuming everything but the x, y, and z are constants, first get rid of the mess by letting
u = x - x1,
v = y - y1,
w = z - z1,
collecting constants and and rearranging to obtain
u2 + v2 + w2 = a
for the first equation and use that on the other three equations to obtain
a11 u + a12 v + a13 w = b1
a21 u + a22 v + a23 w = b2
a31 u + a32 v + a33 w = b3
This is a simple linear 3X3 system which may or may not have a solution.

Oh, and see that other assumed correction in red above.

Hint: (x-x2)2 = [x - x1 - (x2-x1)]2 = [u - (x2-x1)]2
 
Top