Solve 4 equations with 4 unknowns

EssoExplJoe

New Member
Joined
Nov 11, 2016
Messages
28
I am trying to solve for 4 unknowns in 4 equations as below. I have managed to write a VBA routine to solve for 3 unknowns with 4 equations but I am getting totally lost in the weeds trying with 4 unknowns (4 cubic equations). Does any have any VBA routines that does this?

Points: (Y1,X1), (Y2,X2), (Y3,X3), (Y4,X4)
Points: (10,2), (5,4), (4,11), (4,15)
Four Equations with 4 variables:
a) Y1=a+bX1+cX12+dX13
b) Y2=a+bX2+cX22+dX23
c) Y3=a+bX3+cX32+dX33
d) Y4=a+bX4+cX42+dX43
Solve for a,b c and d :
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Cross-posted without a link here
 
Last edited:
Upvote 0
A solution using Solver


A
B
C
D
E
F
G
H
I
J
1
Points​
Y​
X​
2
1​
10​
2​
3
2​
5​
4​
4
3​
4​
11​
5
4​
4​
15​
6
7
Coefs of a​
Coefs of b​
Coefs of c​
Coefs of d​
Equations​
Eq. Results​
Variables​
Solver Results​
8
1​
2​
4​
8​
10,000001​
10​
a=​
18,7802226​
9
1​
4​
16​
64​
5​
5​
b=​
-5,488346138​
10
1​
11​
121​
1331​
4​
4​
c=​
0,587412716​
11
1​
15​
225​
3375​
4​
4​
d=​
-0,019147523​
12

<tbody>
</tbody>


Use exactly the data layout above
-Coefficients of a
A8:A11 = 1
-Coefficients of b
B8 copied down
=$C2
-Coefficients of c
C8 copied down
=$C2^2
-Coefficients of d
D8 copied down
=$C2^3

Formula in F8 copied down
=$A8*I$8+$B8*I$9+$C8*I$10+$D8*I$11

Formula in G8 copied down
=$B2

Data > Solver
(if you cannot see Solver in tab Data, enable the add-in)
Set
By Changing Variable Cells
=$I$8:$I$11

Add a Restriction
=$F$8:$F$11 = $G$8:$G$11

Uncheck
Make Unconstrained Variables Non Negatives

click the button
Solve

M.
 
Upvote 0
Or, given:

a+2b+4c+8d=10
a+4b+16c+64d=5
a+11b+121c+1331d=4
a+15b+225c+3375d=4

MMULT(MINVERSE({1,2,4,8;1,4,16,64;1,11,121,1331;1,15,225,3375}),{10;5;4;4})

--> solutions {18.78;-5.49;0.587;-0.019} approx,

i.e. same as Marcelo's
 
Upvote 0
Great...just what I was looking for. Thanks. I'll give it a try. Actually, this is a minor part of my project that will be used to generate polynomial curves for calculating a oil well bore path to intersect multiple three dimensional targets given a surface well location and targets with North-South and East-Coordinates along with True Vertical Depths of each target. I didn't realize Excel had matrix functionality. Learn something everyday with Excel.
 
Upvote 0
How would you solve this problem if some of the unknown variables were exponents? That's the problem I encounter now!
 
Upvote 0
It has a real application, it has to do with optimal revenue thresholds for entry and exit into different projects. It's derived in the book Investments Under Uncertainty. All of the numbers in the equations above are one's I chose arbitrarily.
 
Upvote 0
Sorry, equations here

1. -A*B^2 + C*B^-3 + B/5 - 4 = 10
2. -A*D^2 + C*D^-3 + D/5 - 4 = 0
3. -2*A*C^1 + (-3*C*(B^-4)) + (1/5) = 0
4. -2*A*D^1 + (-3*C(D^-4) + (1/5) = 0
 
Upvote 0

Forum statistics

Threads
1,215,350
Messages
6,124,431
Members
449,158
Latest member
burk0007

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top