1
$\begingroup$

I really should've paid more attention to maths in school...

I have some fairly simple simultaneous equations in the following format.

  • VMax = DMax + (DMax - DMin) * GMax
  • VMin = DMin - (DMax - DMin) * GMin

Knowns are VMax, VMin, GMax, GMin
Unknowns are DMax, DMin
All values are real numbers

Given the above, how can I re-arrange the equations to solve and determine the values of DMin and DMax?

1 Answers 1

2

First, expand the multiplications:

$VMax=DMax+DMax\cdot GMax-DMin\cdot GMax$

$VMin=DMin-DMax\cdot Gmin+DMin\cdot GMin$

Solve the first equation for DMax

$DMax=\frac {VMax+DMin\cdot GMax}{1+GMax}$

Insert this value in the second equation, leaving you one equation in $DMin$, which you solve the same way. Then insert the value you find for $DMin$ into this one.

  • 0
    @Dr.ABT: You are ri$g$ht. I fixed the typo2012-08-05