Team:Aberdeen Scotland/Stability

From 2010.igem.org

(Difference between revisions)
 
Line 2: Line 2:
{{:Team:Aberdeen_Scotland/Title}}
{{:Team:Aberdeen_Scotland/Title}}
<html>
<html>
-
<h1>Bistability Analysis</h1>
 
-
<p>The literal meaning of bifurcation is,m "division into two parts, branches, or aspects" (Answers).  In mathematics, this 'division' is in reference to when a non-linear equation suddenly switches from having one solution to having multiple solutions when a parameter of the system is varied.  The point at which bifurcation is referred to as the 'bifurcation point.'  If a system is bistable it can be stable, or at rest in two distinct states.</p>
 
-
<br>
 
-
<center>
 
-
<p>bistability1.png</p>
 
-
<p><b>figure 1.</b> This is a graphical representation of bistability.  Ball 2 can be equally 'happy' in either the 'one' or the 'three' positions.  Once it falls into one of these states, ball 2 will not bin inclined to leave this state, hence making it a 'stable state.'</p>
 
-
</center>
 
-
<br>
 
-
<h3>Why are they important?</h3>
 
-
<p>Analysing the stability of a system is ket to the success of a project.  In biological terms, bistability represetns the potential for our system to switch between the expression fo gree and cyan fluarescent proteins.  Our goal is to analyse the parameter space in order to determione which paramenters andre needed to allow for bistability in the system.
 
-
<br>
 
-
a bifurcation diagram has branches which define the possbile states a system can rest in.  By analysing the bifurcation plots, we can determing how far apart the two 'branches,' or stable states, are.  the further apart the branches, the harder it will be to attacin a switch between the two stable states, however the switch also becomes more stable with increased distance between the branchs.  Therefore, we want to manipulate the parameters in the system to guarantee stable bistability.
 
-
<br>
 
-
<h3>How do you analyse the stability of a system?</h3>
 
-
<p>In order to analyse the stability of the system, we utilised XPPAuto, C programming and MATLAB.  We will attempt to detail the maths behind what the programme does computationally.
 
-
<br>
 
-
The process involved with general stability is as follws.  We have taken a simple example system that is easy to analyse in order to demonstrate the general process:
 
-
<br>
 
-
Take the following example system of two differential equations:
 
-
<br>
 
-
bistability2.png
 
-
<b>1. Set the differential equations equal to zero:</b>
 
-
<br>
 
-
bistability3.png
 
-
<br>
 
-
<b>2. Find the fixed points of the system of differential equations:</b>
 
-
There is a fixed point at x=y=0.  By observation, we can see that there are fixed points at x=0, y=2, and x=3, y=0.  Finally, by solving this system of equations, we see that there is also a fixed point at x=1 and y=1.
 
-
<br>
 
-
<b>3. Evaluate the Jacobian matrix of the system at these fixed points:</b>
 
-
<br>
 
-
If we label the top fuction <i>f1</i> and the bottom <i>f2</i>, the Jacobian matrix of the system will be of the firm:
 
-
<br>
 
-
bistability4.png
 
-
<br>
 
-
When we evaluate the Jacobian matrix for our example system of equations, we get:
 
-
<br>
 
-
bistability5.png
 
-
<br>
 
-
<b>4. Using the Jacobian matrix, find the corresponding eigenvalues:</b>
 
-
<u>Definition</u>: an eigenvalue is a value λ such that Ax = λx, where x is said to be an eigenvector of A.  In order to solve for λ, solve the following equation:
 
-
<br>
 
-
bistability6.png
 
-
<br>
 
-
Where det is the deterinant of the matrix and I is the identity matrix.  THis is known as the characteristic equation of a matrix.
 
-
<br>
 
-
In the case of our example system, the eigenvalues are:
 
-
<br>
 
-
<center>bistability7.png</center>
 
-
<br>
 
-
<b>5. Take the signs of these eigenvalues in order to analyse the stability:</b>
 
-
<br>
 
-
The eigenvalues of a system give important information about the stability of the system.  The stability of each of the fixed points can be analysed based on the following criteria:
 
-
<center>
 
-
<table>
 
-
  <tr>
 
-
    <td>
 
-
    Positive real and complex parts
 
-
    </td>
 
-
    <td>
 
-
    = unstable
 
-
    </td>
 
-
  </tr>
 
-
  <tr>
 
-
    <td>
 
-
    Negative real and complex parts
 
-
    </td>
 
-
    <td>
 
-
    = stable
 
-
    </td>
 
-
  </tr>
 
-
  <tr>
 
-
    <td>
 
-
    Positive real part
 
-
    </td>
 
-
    <td>
 
-
    = unstable spiral (spiraling out)
 
-
    </td>
 
-
  </tr>
 
-
  <tr>
 
-
    <td>
 
-
    Negative real part
 
-
    </td>
 
-
    <td>
 
-
    stable spiral (spiralling in)
 
-
    </td>
 
-
  </tr>
 
-
</table>
 
-
</center>
 
-
<br>
 
-
So, for our example system, it can be deduced that the stability at the fixed points is as follows:
 
-
<br>
 
-
<center>
 
-
<table>
 
-
  <tr>
 
-
    <td>
 
-
    <left>One positive and one negative eigenvalue at (0,0) means that</left>
 
-
    </td>
 
-
    <td>
 
-
    <b>(0,0)</b> is a <b>saddle node</b>
 
-
    </td>
 
-
    <td>
 
-
  </tr>
 
-
  <tr>
 
-
    <td>
 
-
    <left>Two negative eigenvalues at (0,2) means that</left>
 
-
    </td>
 
-
    <td>
 
-
    <b>(0,2)</b> is a <b>stable node</b>
 
-
    </td>
 
-
  </tr>
 
-
  <tr>
 
-
    <td> 
 
-
    <left>Two negative eigenvalues at (3,0) means that</left>
 
-
    </td>
 
-
    <td>
 
-
    <b>(3,0)</b> is a <b>stable node</b>
 
-
  </tr>
 
-
  <tr>
 
-
    <td>
 
-
    <left>One positive and one negative eigenvalue at (1,1) means that</left>
 
-
    </td>
 
-
    <td>
 
-
    <b>(1,1)</b> is a <b>saddle node</b>
 
-
    </td>
 
-
  </tr>
 
-
</table>
 
-
</center>
 
-
<br>
 
-
<h3>Simulations involved</h3>
 
-
<br>
 
-
<center>
 
-
bistability8.png
 
-
<p><b>Figure 2.</b> This is a bifurcation diagram that we generated using Maple.  It ranges over the parameter space of P1 (GFP) and C (a dimensionless group of parameters) and plots the fixed points o the system at those values.
 
-
</center
 
-
Where there are three fixed points for a given value of C1, the system will exhibit bistability.  we also know that the further apart the two outer 'prongs' the more stable the two definitive fixed states will be, however thsi makes it more difficult to switch between states.
 
-
</p>
 
<br><br>
<br><br>

Latest revision as of 13:23, 26 October 2010

University of Aberdeen - ayeSwitch - iGEM 2010