Mathematica Plotting Mathematica: Michaelis-Menten Rate of Uptake

AI Thread Summary
The discussion focuses on plotting the Michaelis-Menten rate of uptake in Mathematica using the formula R_0 = Q_{s_0}/(K_m + s_0), where K_m is defined as (k_{-1} + k_2)/k_1. Users seek assistance with plotting this function, specifically addressing issues with plot markings not functioning correctly. A solution is provided, indicating that the plotting command can be adjusted to ensure proper display of plot markers. The conversation emphasizes the importance of correctly configuring plot options in Mathematica for effective visualization.
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:
​Solved
 

Similar threads

Replies
5
Views
2K
Replies
1
Views
2K
Replies
2
Views
2K
Replies
2
Views
2K
Replies
3
Views
2K
Replies
2
Views
2K
Replies
7
Views
2K
Replies
2
Views
2K
Replies
3
Views
2K
Replies
6
Views
2K
Back
Top