HP Forums
Problem: Solving Vmax equation with HP Prime - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html)
+--- Forum: HP Prime (/forum-5.html)
+--- Thread: Problem: Solving Vmax equation with HP Prime (/thread-11111.html)



Problem: Solving Vmax equation with HP Prime - doun17 - 07-24-2018 03:45 AM

Hi All


I recently got a HP Prime and am trying to solve a chemistry equation with little success. The formula appears below and calculating the result using traditional methods required two passes.


V = (Vmax * S) / (Km +S)

V and S are given and we need to calculate Vmax and Km

Manually we solve first for Vmax and then substitute that answer into the equation again to resolve for Km

I have tried countless ways of entering this in the Prime but I cannot get any valid results.
Can someone provide guidance on how I would go about solving this in the HP Prime

Thanks


RE: Problem: Solving Vmax equation with HP Prime - xmehq - 07-24-2018 04:57 PM

At a glance, it appears that you are trying to solve for two unknowns (Vmax and Km) with a single equation. Is there a second equation that relates these two? Without a value for one of those, you (and your calculator) wouldn't be able to calculate the other unless there is another distinct equation to relate them.


RE: Problem: Solving Vmax equation with HP Prime - Aries - 07-24-2018 05:22 PM

(07-24-2018 03:45 AM)doun17 Wrote:  Hi All


I recently got a HP Prime and am trying to solve a chemistry equation with little success. The formula appears below and calculating the result using traditional methods required two passes.


V = (Vmax * S) / (Km +S)

V and S are given and we need to calculate Vmax and Km

Manually we solve first for Vmax and then substitute that answer into the equation again to resolve for Km

I have tried countless ways of entering this in the Prime but I cannot get any valid results.
Can someone provide guidance on how I would go about solving this in the HP Prime

Thanks

You have two unknowns but only a single equation.
You can't solve for two unknowns with only one equation (unless there are unusual side conditions).
Being the equation linear, you can solve for Vmax in terms of Km or Km in terms of Vmax.
Best,

Aries Wink


RE: Problem: Solving Vmax equation with HP Prime - roadrunner - 07-24-2018 06:16 PM

Is that the Michaelis-Menten equation? If you have data for V and S plot 1/V vs 1/S in the statistic 2 variable app. If you use a linear fit the Y intercept is 1/Vmax, the slope is Km/Vmax and the x intercept is 1/Km.

edit: the x intercept is -1/Km

-road


RE: Problem: Solving Vmax equation with HP Prime - doun17 - 07-25-2018 02:14 PM

Hi

Thanks to everyones contribution to my problem, I was able to find the solution to the Michaelis-Menten equation. For those interested here is what I did.

In CAS mode

solve({48=v*0.2/k+0.2, 60=v*2/k+2},{v,k})

this gave the result of v=61.71 and k=5.71e-2

The correct solution!


RE: Problem: Solving Vmax equation with HP Prime - doun17 - 07-25-2018 02:15 PM

(07-24-2018 06:16 PM)roadrunner Wrote:  Is that the Michaelis-Menten equation? If you have data for V and S plot 1/V vs 1/S in the statistic 2 variable app. If you use a linear fit the Y intercept is 1/Vmax, the slope is Km/Vmax and the x intercept is 1/Km.

edit: the x intercept is -1/Km

-road

Yes this is the Michaelis-Menten equation, see my next post for the solution. Thanks for your help