Plotting Mathematica: Michaelis-Menten Rate of Uptake

  • Context: Mathematica 
  • Thread starter Thread starter Dustinsfl
  • Start date Start date
  • Tags Tags
    Mathematica Plotting
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 3K views
Dustinsfl
Messages
2,217
Reaction score
5
dwsmith said:
So the Michaelis-Menten rate of uptake is
$$
R_0 = \frac{Q_{s_0}}{K_m+s_0}
$$
where $K_m=\dfrac{k_{-1}+k_2}{k_1}$ and $Q_{s_0}=k_2e_0s_0$

Q is the max velocity K_m is the Michaelis constant.

How can I plot this in Mathematica?
 
Physics news on Phys.org
dwsmith said:
How can I plot this in Mathematica?

Code:
<< PlotLegends`
 Plot[{x*(1 + x)/(1 + x + x^2), x^2/(1 + x + x^2)}, {x, 0, 5}, 
 PlotLegend -> {"Michaelis-Mendel", "k_2=0"}, 
 LegendPosition -> {0, -.45}, Joined -> {True, True}, 
 PlotMarkers -> Automatic]

Plot markings aren't working. How can I get this to work?
 
Last edited: