2.2.2. Briggs-Haldane Approach: ES ES P S
2.2.2. Briggs-Haldane Approach: ES ES P S
kmole/m3s. Care should be taken for the consistency of unit when enzyme
concentration is not expressed in molar unit.
The Michaelis-Menten equation is analogous to the Langmuir isotherm
equation
CA
θ= (2.13)
K + CA
where θ is the fraction of the solid surface covered by gas molecules and K is
the reciprocal of the adsorption equilibrium constant.
2.2.2. Briggs-Haldane Approach
Again, from the mechanism described by Eqs. (2.5) Eq. (2.6), the rates of
product formation and of substrate consumption are
dCP
= k3CES (2. 14)
dt
dC
− S = k1CS CE − k2CES (2.15)
dt
Assume that the change of CES with time, dCES/dt, is negligible compared to
that of CP or CS.
dCES
= k1CS CE − k2CES − k3CES ≅ 0 (2.16)
dt
Substitution of Eq. (2.16) into Eq. (2.15) confirms that the rate of product
formation and that of the substrate consumption are the same, that is,
dC dC
r = P = − S = k3CES (2.7)
dt dt
Again, if we assume that the total enzyme contents are conserved,
CE0 = CE + CES (2.9)
Substituting Eq. (2.9) into Eq. (2.16) for CE, and rearranging for CES
CE0 CS
CES = (2.17)
k 2 + k3
+ CS
k1
Substitution of Eq. (2.17) into Eq. (2.14) results
dC dC k3CE0 CS r C
r= P =− S = = max S (2.18)
dt dt k2 + k3 K + C
+ CS M S
k1
which is the same as the Michaelis-Menten equation, Eq. (2.11), except that
the meaning of KM is different. In the Michaelis-Menten approach, KM is
Enzyme Kinetics 2-11
k3
"""
ES$"" #P + E
k4 "
Derive the rate equation by employing (a) the Michaelis-Menten and (b) the
Briggs-Haldane approach. Explain when the rate equation derived by the
Briggs-Haldane approach can be simplified to that derived by the Michaelis-
Menten approach.
Solution:
(a) Michaelis-Menten approach: The rate of product formation is
rP = k3CES − k4CPCE (2.19)
Since enzyme is preserved,
CE 0 = CE + CES (2.20)
CE0 CS
CES = (2.23)
k2
+ CS
k1
Substituting Eq. (2.23) into Eq. (2.8) gives
k k
k3CE0 CS − 4 2 CP
rP = k3 k1
(2.24)
k2
+ CS
k1
(b) Briggs-Haldane approach: Assume that the change of the complex
concentration with time, dCES/dt, is negligible. Then,
dCES
= k1CS CE − k2CES − k3CES + k4CPCE ≅ 0 (2.25)
dt
Substituting Eq. (2.20) into Eq. (2.25) for CE and rearranging gives
CE0 (k1CS + k4CP )
CES = (2.26)
(k2 + k3 ) + k1CS + k4CP
Inserting Eq. (2.26) into Eq. (2.19) for CES gives
k k
k3CE0 CS − 4 2 CP
rP = k3 k1
(2.27)
k 2 + k3 k4
+ CS + C P
k1 k1
If the first step of the reaction, the complex formation step, is much faster
than the second, the product formation step, k1 and k2 will be much larger
than k3 and k4. Therefore, in Eq. (2.27),
k 2 + k3 k 2
≅ (2.28)
k1 k1
and
k4
≅0 (2.29)
k1
which simplifies Eq. (2.27) into Eq. (2.24).
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
2.2.3. Numerical Solution
From the mechanism described by Eqs. (2.5) and (2.6), three rate equations
can be written for CP, CES, and CS as
Enzyme Kinetics 2-13
dCP
= k 3CES (2.14)
dt
dCES
= k1CS CE − k2CES − k3CES (2.30)
dt
dCS
= − k1CS CE + k2 CES (2.31)
dt
Eqs. (2.14), (2.30), and (2.31) with Eq. (2.9) can be solved simultaneously
without simplification. Since the analytical solution of the preceding
simultaneous differential equations are not possible, we need to solve them
numerically by using a computer. Among many software packages that solve
simultaneous differential equations, Advanced Continuous Simulation
Language (ACSL, 1975) is very powerful and easy to use.
The heart of ACSL is the integration operator, INTEG, that is,
R = INTEG(X,R0)
implies
t
R = R0 + ∫ Xdt
0
Original set of differential equations are converted to a set of first-order
equations, and solved directly by integrating. For example, Eq. (2.14) can be
solved by integrating as
t
CP = CP0 + ∫ k3CES dt
0
which can be written in ACSL as
CP = INTEG(K3*CES,CP0)
For more details of this simulation language, please refer to the ACSL User
Guide (ACSL, 1975).
You can also use Mathematica (Wolfram Research, Inc., Champaign, IL)
or MathCad (MathSoft, Inc., Cambridge, MA). to solve the above problem,
though they are not as powerful as ACSL.
It should be noted that this solution procedure requires the knowledge of
elementary rate constants, k1, k2, and k3. The elementary rate constants can be
measured by the experimental techniques such as pre-steady-state kinetics
and relaxation methods (Bailey and Ollis, pp. 111–113, 1986), which are
much more complicated compared to the methods to determine KM and rmax.
Furthermore, the initial molar concentration of an enzyme should be known,
which is also difficult to measure as explained earlier. However, a numerical
2-14 Enzyme Kinetics
solution with the elementary rate constants can provide a more precise picture
of what is occurring during the enzyme reaction, as illustrated in the
following example problem.
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
Example 2.2
By employing the computer method, show how the concentrations of
substrate, product, and enzyme-substrate complex change with respect to
time in a batch reactor for the enzyme reactions described by Eqs. (2.5) and
(2.6). The initial substrate and enzyme concentrations are 0.1 and 0.01 mol/L,
respectively. The values of the reaction constants are: k1 = 40 L/mols, k2 = 5
s−1, and k3 = 0.5 s−1.
Table 2.2
ACSL Program for Example 2.2
PROGRAM ENZY-EX2 ACSL
INITIAL
ALGORITHM IALG=5 $ 'RUNGE-KUTTA FOURTH ORDER'
CONSTANT K1=40., K2=5., K3=0.5, CE0=0.01, ...
CS0=0.1, CP0=0.0, TSTOP=130
CINTERVAL CINT=0.2 $ 'COMMUNICAITON INTERVAL'
NSTEPS NSTP=10
VARIABLE TIME=0.0
END $ 'END OF INITIAL'
DYNAMIC
DERIVATIVE
DCSDT=-K1*CS*CE+K2*CES
CS=INTEG(DCSDT,CS0)
DCESDT=K1*CS*CE-K2*CES-K3*CES
CES=INTEG(DCESDT,0.0)
CE=CE0-CES
DCPDT=K3*CES
CP=INTEG(DCPDT,CP0)
END $ 'END OF DERIVATIVE SECTION'
TERMT(TIME.GE.TSTOP)
END $ 'END OF DYNAMIC SECTION'
END $ 'END OF PROGRAM'
Table 2.3
Executive Command Program for Example 2.2
SET TITLE = 'SOLUTION OF EXAMPLE 2.2'
SET PRN=9
OUTPUT TIME,CS,CP,CES,'NCIOUT'=50 $'DEFINE LIST TO BE PRINTED'
PREPAR TIME,CS,CP,CES $'DEFINE LIST TO BE SAVED'
START
SET NPXPPL=50, NPYPPL=60
PLOT 'XAXIS'=TIME, 'XLO'=0, 'XHI'=130, CS, CP, CES, 'LO'=0, 'HI'=0.1
STOP
Enzyme Kinetics 2-15
k1 := 40 k2 := 5 k3 := 0.5
−k1⋅ C1⋅ (0.01 − C2) + k2⋅ C2
C1 = Cs
D( t , C) := k1⋅ C1⋅ (0.01 − C2) − k2⋅ C2 − k3⋅ C2 Note:
C2 = Ces
k3⋅ C2
C3 = Cp
〈 1〉 〈 2〉 〈 3〉 〈 4〉
t := S Cs := S Ces := S Cp := S
0.1
Cs
Ces 0.05
Cp
0
0 50 100
t
Solution:
To determine how the concentrations of the substrate, product, and
enzyme-substrate complex are changing with time, we can solve Eqs. (2.14),
(2.30), and (2.31) with the enzyme conservation equation Eq. (2.9) by using
ACSL.
The ACSL program to solve this problem is shown in Table 2.2, which is
composed of four blocks: PROGRAM, INITIAL, DYNAMIC, and
DERIVATIVE. Each block when present must be terminated with an END
statement. For the integration algorithm (IALG), Runge-Kutta fourth order
(IALG = 5) was selected, which is default if not specified.5 The calculation
5
Other algorithms are also available for the selection. They are Adams-Moulton
(IALG = 1), Gears Stiff (IALG = 2), Runge-Kutta first order or Euler (IALG = 3),
and Runge-Kutta second order (IALG = 4). The Adams-Moulton and Gear's Stiff
are both variable-step, variable-order integration routines. For the detailed
description of these algorithms, please refer to numerical analysis textbooks, such
2-16 Enzyme Kinetics
as Gerald and Wheatley (1989), Chappra and Canale (1988), Carnahan et al.
(1969), and Burden and Faires (1989). }
Enzyme Kinetics 2-17
20
15
CS 1
10
r rmax
KM 5
rmax
0 20 40 60 80
CS
0.6
0.4
1 KM
r rmax
0.2 1
rmax
Similarly, the plot of 1/r versus 1/CS will result in a straight line according
to Eq. (2.33), and the slope will be equal to K M rmax . The intercept will be
1/rmax, as shown in Figure 2.6. This plot is known as Lineweaver-Burk plot
(Lineweaver and Burk, 1934).
The plot of r versus r/CS will result in a straight line with a slope of –KM
and an intercept of rmax, as shown in Figure 2.7. This plot is known as the
Eadie-Hofstee plot (Eadie, 1942; Hofstee, 1952).
The Lineweaver-Burk plot is more often employed than the other two
plots because it shows the relationship between the independent variable CS
and the dependent variable r. However, 1/r approaches infinity as CS
decreases, which gives undue weight to inaccurate measurements made at
low substrate concentrations, and insufficient weight to the more accurate