SlideShare a Scribd company logo
1 of 27
Analytic Analysis of Differential
Equations

Generally real-world differential equations
are not directly solvable.

That's when we use numerical
approximations.

We're going to look at some simple ones to
get a better understanding of the differential
equations themselves.

Differential Equations contain the
derivatives of unknown functions.

Given some simple differential equations,
we can sometimes guess at the form of the
function.

So we will work backwards – from the
solution to the differential equation.
A typical linear equation is the relationship
between temperature in Fahrenheit and Celsius.
C = (5/9)(F-32)
Using Octave to plot (C,F) for F=32 to 212:
octave:8> F=32:1:212;
octave:9> plot(F, (5/9)*(F-32))
Clearly this function is linear.
If this function was given as a differential
equation, it would just be the derivative of C with
respect to F. It's a constant function with this
initial value:
dC/dF=5/9, C(32)=0
So, if the differential equation is a constant
function, the solution is a linear function.
A slightly more complex function.
The position of an object, s, moving at constant
acceleration is given by:
s(t)=v0
t+ 1/2at2
Exercise:

Given an initial velocity of 20 m/s and
acceleration of 3 m/s2
, use Octave to plot this
function for t=0 to 10 seconds.

What is ds/dt? What do you expect that graph
to look like?
A little more complex -
The value of the differential equation is dependent
on the value of the function?
Let's look at the growth of bacteria.
Bacteria reproduce using binary fission and
double in number in each time frame assuming
they have enough food. So the change in the
number of bacteria is dependent on the number of
bacteria already present.
Exercise:

Assume our example bacteria doubles every
ten minutes and has plenty to consume.

Starting with one bacteria, use Octave to plot
the number of bacteria every ten minutes for
two hours. How many bacteria are there after
two hours?
This function is exponential.
Its general formula is:
x(t)=x0
ekt
where x0
is the starting value and k is the growth
factor.
The differential function that gives us this
function is:
dx/dt = kx with x(0)=x0
.

So testing this out - another population
example:

Population is not often based solely on
population growth, but also on predation.

Assume there is an population of animals, x.
They have a growth rate, r, that depends on
their birth rate.
What differential equation describes the change
in population?
Answer: dx/dt = rx
We recognize this as describing an exponential
function. So with no limits, the growth is
exponential.

More realistically, a population is better
modeled with two functions:

For the prey organisms, x, growth is limited
by resources. There is a maximum number of
organisms, max, that can be maintained in an
area. As they approach that number, their
growth rate decreases linearly.

This new information leads us to a new
differential equation...
dx/dt=r(1-x/max)x
Notice that as x approaches max, dx/dt
approaches 0. This function is called the
logistic function.
This is its solution:
x(t)=(max*x0
*ert
)/(x0
*ert
+ max – x0
)
I'll plot this one for you with the parameters:
max = 20, r = 1 and x0
=1.
octave:71> t=0:1/32:8;
octave:72> r=1;
octave:73> x0=1;
octave:74> max=20;
octave:75> y = max*x0*exp(r*t)./(x0*exp(r*t)+max-x0);
octave:76> plot(t,y);

This curve is called an S-curve.

The function is called the logistic function
and also it's called a sigmoid function.

It shows up in many different models.

It is frequently used to model biological
switching.

But organisms do not tend to live alone. If
they are prey, they live with predators.

Now the growth of the prey, x, is affected by
the number of predators, y. And the growth
of the predators is affected by the number of
prey.

Now we have a system of differential
equations that depend on each other.
dx/dt = rx - axy
dy/dt = -my + bxy

r is the growth rate of the prey. If there are
no predators, they grow exponentially.

m is the decay rate of the predators. If there
is no prey, they die off.

Whenever they encounter each other, the
prey decrease by a and the predators increase
by b.

We cannot write a formula to express the
solution to this system of equations.

We could use numerical methods to
approximate a solution, but we can't find one
analytically.
Fitzhugh-Nagumo, is another system of
equations that we've seen:
dV/dt = (a-V)(V-1)V – v
dv/dt = (βV-γv-δ)ϵ

You've approximated it numerically and
you'll be doing more of that.

There is also another way to analyze its
behavior.
Phase Plane Analysis
•We are going to think of the solutions to the
equations as points on the (V,v) plane.
•For example, if V is .5 and v is .5, what is dv/dt?
dV/dt?
dV/dt=(0.1-0.5)(0.5-1)(0.5)-(.5)=-0.37750
dv/dt = 0.01(0.5*0.5 – 1*0.5 – 0) = -0.0025000

So at the point (0.5, 0.5) on the (V,v) plane there
is a tangent that points in about the (-0.4, 0.0)
direction.

In other words, if the system has the values (0.5,
0,5), its V value (the membrane potential) will be
decreasing, and v will not be changing very
much.

We can plot lots of tangents and see how the
functions behave over the plane.

We can also see how the functions behave
when one is held at zero.

The V nullcline is the curve that we find if
dV/dt is zero.

The v nullcline is the curve that we find if
dv/dt is zero.
Exercise:
Find the formulas for the V and v nullclines in
terms of V.
0 = (a-V)(V-1)V – v
0 = (βV-γv-δ)ϵ
In Octave:

Use V = -2 to 2

Use axis to set the x axis to -2 to 2 and the
y axis to -1, 1.

Plot the nullclines on one graph.
(a=0.1, beta=0.5, gamma=1, delta=0,
epsilon=0.01)

We can look at a simulation of the Fitzhugh-
Nagumo phase plane at thevirtualheart.org.

The applet on top shows the phase plane along
with the tangent lines. Click on a starting point
to see how the system behaves.

The applet on the bottom plots V (U) and v over
time.

http://thevirtualheart.org/java/fhnphase.html
Exercises:

Try the parameter changes suggested on the
page.

Try to determine, the minimum value of
delta that will make the system auto-
oscillatory.

How does the intersection point of the two
nullclines relate to the behavior of the
system?

More Related Content

What's hot

__limite functions.sect22-24
  __limite functions.sect22-24  __limite functions.sect22-24
__limite functions.sect22-24argonaut2
 
The Graph Minor Theorem: a walk on the wild side of graphs
The Graph Minor Theorem: a walk on the wild side of graphsThe Graph Minor Theorem: a walk on the wild side of graphs
The Graph Minor Theorem: a walk on the wild side of graphsMarco Benini
 
Calculus II - 23
Calculus II - 23Calculus II - 23
Calculus II - 23David Mao
 
7.4 inverse functions
7.4 inverse functions7.4 inverse functions
7.4 inverse functionshisema01
 
Lesson 5: Continuity (slides)
Lesson 5: Continuity (slides)Lesson 5: Continuity (slides)
Lesson 5: Continuity (slides)Matthew Leingang
 
Regla de 3 simple y compuesta
Regla de 3 simple y compuestaRegla de 3 simple y compuesta
Regla de 3 simple y compuestaMarcos A. Fatela
 
Exponential functions
Exponential functionsExponential functions
Exponential functionsomar_egypt
 
Exponential formula presentation
Exponential formula presentationExponential formula presentation
Exponential formula presentationOliver Zhang
 
Applied Calculus: Continuity and Discontinuity of Function
Applied Calculus: Continuity and Discontinuity of FunctionApplied Calculus: Continuity and Discontinuity of Function
Applied Calculus: Continuity and Discontinuity of Functionbaetulilm
 
Introduction to the Theory of Computation, Winter 2003 A. Hevia and J. Mao S...
 Introduction to the Theory of Computation, Winter 2003 A. Hevia and J. Mao S... Introduction to the Theory of Computation, Winter 2003 A. Hevia and J. Mao S...
Introduction to the Theory of Computation, Winter 2003 A. Hevia and J. Mao S...parmeet834
 
Lesson 13: Exponential and Logarithmic Functions (slides)
Lesson 13: Exponential and Logarithmic Functions (slides)Lesson 13: Exponential and Logarithmic Functions (slides)
Lesson 13: Exponential and Logarithmic Functions (slides)Matthew Leingang
 
Limit & Derivative Problems by ANURAG TYAGI CLASSES (ATC)
Limit & Derivative Problems by ANURAG TYAGI CLASSES (ATC)Limit & Derivative Problems by ANURAG TYAGI CLASSES (ATC)
Limit & Derivative Problems by ANURAG TYAGI CLASSES (ATC)ANURAG TYAGI CLASSES (ATC)
 
Integration material
Integration material Integration material
Integration material Surya Swaroop
 
2.2 Direct Variation
2.2 Direct Variation2.2 Direct Variation
2.2 Direct Variationleblance
 

What's hot (19)

__limite functions.sect22-24
  __limite functions.sect22-24  __limite functions.sect22-24
__limite functions.sect22-24
 
U3 Cn1 Derivatives
U3 Cn1 DerivativesU3 Cn1 Derivatives
U3 Cn1 Derivatives
 
Continuity
ContinuityContinuity
Continuity
 
Limits
LimitsLimits
Limits
 
The Graph Minor Theorem: a walk on the wild side of graphs
The Graph Minor Theorem: a walk on the wild side of graphsThe Graph Minor Theorem: a walk on the wild side of graphs
The Graph Minor Theorem: a walk on the wild side of graphs
 
Exponential functions
Exponential functionsExponential functions
Exponential functions
 
Calculus II - 23
Calculus II - 23Calculus II - 23
Calculus II - 23
 
7.4 inverse functions
7.4 inverse functions7.4 inverse functions
7.4 inverse functions
 
Lesson 5: Continuity (slides)
Lesson 5: Continuity (slides)Lesson 5: Continuity (slides)
Lesson 5: Continuity (slides)
 
Regla de 3 simple y compuesta
Regla de 3 simple y compuestaRegla de 3 simple y compuesta
Regla de 3 simple y compuesta
 
Exponential functions
Exponential functionsExponential functions
Exponential functions
 
Exponential formula presentation
Exponential formula presentationExponential formula presentation
Exponential formula presentation
 
Applied Calculus: Continuity and Discontinuity of Function
Applied Calculus: Continuity and Discontinuity of FunctionApplied Calculus: Continuity and Discontinuity of Function
Applied Calculus: Continuity and Discontinuity of Function
 
Introduction to the Theory of Computation, Winter 2003 A. Hevia and J. Mao S...
 Introduction to the Theory of Computation, Winter 2003 A. Hevia and J. Mao S... Introduction to the Theory of Computation, Winter 2003 A. Hevia and J. Mao S...
Introduction to the Theory of Computation, Winter 2003 A. Hevia and J. Mao S...
 
Lesson 13: Exponential and Logarithmic Functions (slides)
Lesson 13: Exponential and Logarithmic Functions (slides)Lesson 13: Exponential and Logarithmic Functions (slides)
Lesson 13: Exponential and Logarithmic Functions (slides)
 
Math12 lesson11
Math12 lesson11Math12 lesson11
Math12 lesson11
 
Limit & Derivative Problems by ANURAG TYAGI CLASSES (ATC)
Limit & Derivative Problems by ANURAG TYAGI CLASSES (ATC)Limit & Derivative Problems by ANURAG TYAGI CLASSES (ATC)
Limit & Derivative Problems by ANURAG TYAGI CLASSES (ATC)
 
Integration material
Integration material Integration material
Integration material
 
2.2 Direct Variation
2.2 Direct Variation2.2 Direct Variation
2.2 Direct Variation
 

Viewers also liked

Pinpointe analyst-review-june-2011
Pinpointe analyst-review-june-2011Pinpointe analyst-review-june-2011
Pinpointe analyst-review-june-2011GetApp
 
Introduction to markets and pricing strategies
Introduction to markets and pricing strategiesIntroduction to markets and pricing strategies
Introduction to markets and pricing strategiesnaveen joshi
 
Website designing company in gudgaon
Website designing company in gudgaonWebsite designing company in gudgaon
Website designing company in gudgaonCss Founder
 
AN INSIGHT INTO PRINCE2®
AN INSIGHT INTO PRINCE2®AN INSIGHT INTO PRINCE2®
AN INSIGHT INTO PRINCE2®ILX Group
 
Chronic pancreatitis surgery class
Chronic pancreatitis surgery classChronic pancreatitis surgery class
Chronic pancreatitis surgery classAvisek Dutta
 

Viewers also liked (15)

Весь урок в одній презентації
Весь урок в одній презентаціїВесь урок в одній презентації
Весь урок в одній презентації
 
Agenda feb 4 2013
Agenda feb 4 2013Agenda feb 4 2013
Agenda feb 4 2013
 
(9) Datejust Lady
(9) Datejust Lady(9) Datejust Lady
(9) Datejust Lady
 
R166 02
R166 02R166 02
R166 02
 
Install note
Install noteInstall note
Install note
 
Pinpointe analyst-review-june-2011
Pinpointe analyst-review-june-2011Pinpointe analyst-review-june-2011
Pinpointe analyst-review-june-2011
 
Introduction to markets and pricing strategies
Introduction to markets and pricing strategiesIntroduction to markets and pricing strategies
Introduction to markets and pricing strategies
 
The murder-story
The murder-storyThe murder-story
The murder-story
 
Sin título
Sin títuloSin título
Sin título
 
Akkord Steel Construction Company MMC
Akkord Steel Construction Company  MMCAkkord Steel Construction Company  MMC
Akkord Steel Construction Company MMC
 
Malteria lee
Malteria leeMalteria lee
Malteria lee
 
Website designing company in gudgaon
Website designing company in gudgaonWebsite designing company in gudgaon
Website designing company in gudgaon
 
AN INSIGHT INTO PRINCE2®
AN INSIGHT INTO PRINCE2®AN INSIGHT INTO PRINCE2®
AN INSIGHT INTO PRINCE2®
 
Chronic pancreatitis surgery class
Chronic pancreatitis surgery classChronic pancreatitis surgery class
Chronic pancreatitis surgery class
 
SignalR
SignalRSignalR
SignalR
 

Similar to Website designing compay in noida

Differential Equations Presention powert point presentation
Differential Equations Presention powert point presentationDifferential Equations Presention powert point presentation
Differential Equations Presention powert point presentationZubairAnwaar
 
Indefinite Integral
Indefinite IntegralIndefinite Integral
Indefinite IntegralRich Elle
 
Erin catto numericalmethods
Erin catto numericalmethodsErin catto numericalmethods
Erin catto numericalmethodsoscarbg
 
IVS-B UNIT-1_merged. Semester 2 fundamental of sciencepdf
IVS-B UNIT-1_merged. Semester 2 fundamental of sciencepdfIVS-B UNIT-1_merged. Semester 2 fundamental of sciencepdf
IVS-B UNIT-1_merged. Semester 2 fundamental of sciencepdf42Rnu
 
Get Multiple Regression Assignment Help
Get Multiple Regression Assignment Help Get Multiple Regression Assignment Help
Get Multiple Regression Assignment Help HelpWithAssignment.com
 
Lambda Calculus by Dustin Mulcahey
Lambda Calculus by Dustin Mulcahey Lambda Calculus by Dustin Mulcahey
Lambda Calculus by Dustin Mulcahey Hakka Labs
 
Derivación e integración de funciones de varias variables
Derivación e integración de funciones de varias variablesDerivación e integración de funciones de varias variables
Derivación e integración de funciones de varias variablesRicardoAzocar3
 
11Functions-in-several-variables-and-double-integrals.pdf
11Functions-in-several-variables-and-double-integrals.pdf11Functions-in-several-variables-and-double-integrals.pdf
11Functions-in-several-variables-and-double-integrals.pdfCristianBatongbakal
 
Teachingtools4kidsbasic/calculus
Teachingtools4kidsbasic/calculusTeachingtools4kidsbasic/calculus
Teachingtools4kidsbasic/calculusOpenCourse
 
Using Eulers formula, exp(ix)=cos(x)+isin.docx
Using Eulers formula, exp(ix)=cos(x)+isin.docxUsing Eulers formula, exp(ix)=cos(x)+isin.docx
Using Eulers formula, exp(ix)=cos(x)+isin.docxcargillfilberto
 

Similar to Website designing compay in noida (20)

DiffEqPresent.ppt
DiffEqPresent.pptDiffEqPresent.ppt
DiffEqPresent.ppt
 
DiffEqPresent.ppt
DiffEqPresent.pptDiffEqPresent.ppt
DiffEqPresent.ppt
 
DiffEqPresent.ppt
DiffEqPresent.pptDiffEqPresent.ppt
DiffEqPresent.ppt
 
Differential Equations Presention powert point presentation
Differential Equations Presention powert point presentationDifferential Equations Presention powert point presentation
Differential Equations Presention powert point presentation
 
Indefinite Integral
Indefinite IntegralIndefinite Integral
Indefinite Integral
 
Integration
IntegrationIntegration
Integration
 
Derivative rules.docx
Derivative rules.docxDerivative rules.docx
Derivative rules.docx
 
Erin catto numericalmethods
Erin catto numericalmethodsErin catto numericalmethods
Erin catto numericalmethods
 
Grupo 13 taller parcial2_nrc2882
Grupo 13 taller parcial2_nrc2882Grupo 13 taller parcial2_nrc2882
Grupo 13 taller parcial2_nrc2882
 
Chapter 3
Chapter 3Chapter 3
Chapter 3
 
IVS-B UNIT-1_merged. Semester 2 fundamental of sciencepdf
IVS-B UNIT-1_merged. Semester 2 fundamental of sciencepdfIVS-B UNIT-1_merged. Semester 2 fundamental of sciencepdf
IVS-B UNIT-1_merged. Semester 2 fundamental of sciencepdf
 
Multiple scales
Multiple scalesMultiple scales
Multiple scales
 
Limits and derivatives
Limits and derivativesLimits and derivatives
Limits and derivatives
 
Get Multiple Regression Assignment Help
Get Multiple Regression Assignment Help Get Multiple Regression Assignment Help
Get Multiple Regression Assignment Help
 
Week 7
Week 7Week 7
Week 7
 
Lambda Calculus by Dustin Mulcahey
Lambda Calculus by Dustin Mulcahey Lambda Calculus by Dustin Mulcahey
Lambda Calculus by Dustin Mulcahey
 
Derivación e integración de funciones de varias variables
Derivación e integración de funciones de varias variablesDerivación e integración de funciones de varias variables
Derivación e integración de funciones de varias variables
 
11Functions-in-several-variables-and-double-integrals.pdf
11Functions-in-several-variables-and-double-integrals.pdf11Functions-in-several-variables-and-double-integrals.pdf
11Functions-in-several-variables-and-double-integrals.pdf
 
Teachingtools4kidsbasic/calculus
Teachingtools4kidsbasic/calculusTeachingtools4kidsbasic/calculus
Teachingtools4kidsbasic/calculus
 
Using Eulers formula, exp(ix)=cos(x)+isin.docx
Using Eulers formula, exp(ix)=cos(x)+isin.docxUsing Eulers formula, exp(ix)=cos(x)+isin.docx
Using Eulers formula, exp(ix)=cos(x)+isin.docx
 

More from Css Founder

Cssfounder.com website designing company in delhi
Cssfounder.com website designing company in delhiCssfounder.com website designing company in delhi
Cssfounder.com website designing company in delhiCss Founder
 
Internet technology and web designing
Internet technology and web designingInternet technology and web designing
Internet technology and web designingCss Founder
 
Web page design-cssfounder
Web page design-cssfounderWeb page design-cssfounder
Web page design-cssfounderCss Founder
 
Tech dev cssfounder.com
Tech dev cssfounder.comTech dev cssfounder.com
Tech dev cssfounder.comCss Founder
 
Digital india-cssfounder.com
Digital india-cssfounder.comDigital india-cssfounder.com
Digital india-cssfounder.comCss Founder
 
Poverty inindia CssFounder.com
Poverty inindia CssFounder.comPoverty inindia CssFounder.com
Poverty inindia CssFounder.comCss Founder
 
Poverty in india Cssfounder.com
Poverty in india Cssfounder.comPoverty in india Cssfounder.com
Poverty in india Cssfounder.comCss Founder
 
Website designing company in delhi e commerce
Website designing company in delhi e commerceWebsite designing company in delhi e commerce
Website designing company in delhi e commerceCss Founder
 
Website designing company_in_delhi blogging
Website designing company_in_delhi bloggingWebsite designing company_in_delhi blogging
Website designing company_in_delhi bloggingCss Founder
 
Website designing company in delhi blog powerpoint
Website designing company in delhi blog powerpointWebsite designing company in delhi blog powerpoint
Website designing company in delhi blog powerpointCss Founder
 
Website designing company_in_delhi e-business
Website designing company_in_delhi e-businessWebsite designing company_in_delhi e-business
Website designing company_in_delhi e-businessCss Founder
 
Website designing company_in_mumbai_digital india
Website designing company_in_mumbai_digital indiaWebsite designing company_in_mumbai_digital india
Website designing company_in_mumbai_digital indiaCss Founder
 
Website designing company_in_delhi_digitization practices
Website designing company_in_delhi_digitization practicesWebsite designing company_in_delhi_digitization practices
Website designing company_in_delhi_digitization practicesCss Founder
 
Website designing company_in_delhi_education
Website designing company_in_delhi_educationWebsite designing company_in_delhi_education
Website designing company_in_delhi_educationCss Founder
 
Website designing company_in_delhi_education system
Website designing company_in_delhi_education systemWebsite designing company_in_delhi_education system
Website designing company_in_delhi_education systemCss Founder
 
Website designing company_in_delhi_phpwebdevelopment
Website designing company_in_delhi_phpwebdevelopmentWebsite designing company_in_delhi_phpwebdevelopment
Website designing company_in_delhi_phpwebdevelopmentCss Founder
 
Website development process
Website development processWebsite development process
Website development processCss Founder
 
Webdesign website development_company_surat
Webdesign website development_company_suratWebdesign website development_company_surat
Webdesign website development_company_suratCss Founder
 
Internet website designing_company_in_delhi
Internet website designing_company_in_delhiInternet website designing_company_in_delhi
Internet website designing_company_in_delhiCss Founder
 
Website designing company in delhi
Website designing company in delhiWebsite designing company in delhi
Website designing company in delhiCss Founder
 

More from Css Founder (20)

Cssfounder.com website designing company in delhi
Cssfounder.com website designing company in delhiCssfounder.com website designing company in delhi
Cssfounder.com website designing company in delhi
 
Internet technology and web designing
Internet technology and web designingInternet technology and web designing
Internet technology and web designing
 
Web page design-cssfounder
Web page design-cssfounderWeb page design-cssfounder
Web page design-cssfounder
 
Tech dev cssfounder.com
Tech dev cssfounder.comTech dev cssfounder.com
Tech dev cssfounder.com
 
Digital india-cssfounder.com
Digital india-cssfounder.comDigital india-cssfounder.com
Digital india-cssfounder.com
 
Poverty inindia CssFounder.com
Poverty inindia CssFounder.comPoverty inindia CssFounder.com
Poverty inindia CssFounder.com
 
Poverty in india Cssfounder.com
Poverty in india Cssfounder.comPoverty in india Cssfounder.com
Poverty in india Cssfounder.com
 
Website designing company in delhi e commerce
Website designing company in delhi e commerceWebsite designing company in delhi e commerce
Website designing company in delhi e commerce
 
Website designing company_in_delhi blogging
Website designing company_in_delhi bloggingWebsite designing company_in_delhi blogging
Website designing company_in_delhi blogging
 
Website designing company in delhi blog powerpoint
Website designing company in delhi blog powerpointWebsite designing company in delhi blog powerpoint
Website designing company in delhi blog powerpoint
 
Website designing company_in_delhi e-business
Website designing company_in_delhi e-businessWebsite designing company_in_delhi e-business
Website designing company_in_delhi e-business
 
Website designing company_in_mumbai_digital india
Website designing company_in_mumbai_digital indiaWebsite designing company_in_mumbai_digital india
Website designing company_in_mumbai_digital india
 
Website designing company_in_delhi_digitization practices
Website designing company_in_delhi_digitization practicesWebsite designing company_in_delhi_digitization practices
Website designing company_in_delhi_digitization practices
 
Website designing company_in_delhi_education
Website designing company_in_delhi_educationWebsite designing company_in_delhi_education
Website designing company_in_delhi_education
 
Website designing company_in_delhi_education system
Website designing company_in_delhi_education systemWebsite designing company_in_delhi_education system
Website designing company_in_delhi_education system
 
Website designing company_in_delhi_phpwebdevelopment
Website designing company_in_delhi_phpwebdevelopmentWebsite designing company_in_delhi_phpwebdevelopment
Website designing company_in_delhi_phpwebdevelopment
 
Website development process
Website development processWebsite development process
Website development process
 
Webdesign website development_company_surat
Webdesign website development_company_suratWebdesign website development_company_surat
Webdesign website development_company_surat
 
Internet website designing_company_in_delhi
Internet website designing_company_in_delhiInternet website designing_company_in_delhi
Internet website designing_company_in_delhi
 
Website designing company in delhi
Website designing company in delhiWebsite designing company in delhi
Website designing company in delhi
 

Recently uploaded

A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 

Recently uploaded (20)

A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 

Website designing compay in noida

  • 1. Analytic Analysis of Differential Equations
  • 2.  Generally real-world differential equations are not directly solvable.  That's when we use numerical approximations.  We're going to look at some simple ones to get a better understanding of the differential equations themselves.
  • 3.  Differential Equations contain the derivatives of unknown functions.  Given some simple differential equations, we can sometimes guess at the form of the function.  So we will work backwards – from the solution to the differential equation.
  • 4. A typical linear equation is the relationship between temperature in Fahrenheit and Celsius. C = (5/9)(F-32) Using Octave to plot (C,F) for F=32 to 212: octave:8> F=32:1:212; octave:9> plot(F, (5/9)*(F-32))
  • 5.
  • 6. Clearly this function is linear. If this function was given as a differential equation, it would just be the derivative of C with respect to F. It's a constant function with this initial value: dC/dF=5/9, C(32)=0 So, if the differential equation is a constant function, the solution is a linear function.
  • 7. A slightly more complex function. The position of an object, s, moving at constant acceleration is given by: s(t)=v0 t+ 1/2at2 Exercise:  Given an initial velocity of 20 m/s and acceleration of 3 m/s2 , use Octave to plot this function for t=0 to 10 seconds.  What is ds/dt? What do you expect that graph to look like?
  • 8. A little more complex - The value of the differential equation is dependent on the value of the function? Let's look at the growth of bacteria. Bacteria reproduce using binary fission and double in number in each time frame assuming they have enough food. So the change in the number of bacteria is dependent on the number of bacteria already present.
  • 9. Exercise:  Assume our example bacteria doubles every ten minutes and has plenty to consume.  Starting with one bacteria, use Octave to plot the number of bacteria every ten minutes for two hours. How many bacteria are there after two hours?
  • 10. This function is exponential. Its general formula is: x(t)=x0 ekt where x0 is the starting value and k is the growth factor. The differential function that gives us this function is: dx/dt = kx with x(0)=x0 .
  • 11.  So testing this out - another population example:  Population is not often based solely on population growth, but also on predation.  Assume there is an population of animals, x. They have a growth rate, r, that depends on their birth rate.
  • 12. What differential equation describes the change in population? Answer: dx/dt = rx We recognize this as describing an exponential function. So with no limits, the growth is exponential.
  • 13.  More realistically, a population is better modeled with two functions:  For the prey organisms, x, growth is limited by resources. There is a maximum number of organisms, max, that can be maintained in an area. As they approach that number, their growth rate decreases linearly.  This new information leads us to a new differential equation...
  • 14. dx/dt=r(1-x/max)x Notice that as x approaches max, dx/dt approaches 0. This function is called the logistic function. This is its solution: x(t)=(max*x0 *ert )/(x0 *ert + max – x0 ) I'll plot this one for you with the parameters: max = 20, r = 1 and x0 =1.
  • 15. octave:71> t=0:1/32:8; octave:72> r=1; octave:73> x0=1; octave:74> max=20; octave:75> y = max*x0*exp(r*t)./(x0*exp(r*t)+max-x0); octave:76> plot(t,y);
  • 16.  This curve is called an S-curve.  The function is called the logistic function and also it's called a sigmoid function.  It shows up in many different models.  It is frequently used to model biological switching.
  • 17.  But organisms do not tend to live alone. If they are prey, they live with predators.  Now the growth of the prey, x, is affected by the number of predators, y. And the growth of the predators is affected by the number of prey.  Now we have a system of differential equations that depend on each other.
  • 18. dx/dt = rx - axy dy/dt = -my + bxy  r is the growth rate of the prey. If there are no predators, they grow exponentially.  m is the decay rate of the predators. If there is no prey, they die off.  Whenever they encounter each other, the prey decrease by a and the predators increase by b.
  • 19.  We cannot write a formula to express the solution to this system of equations.  We could use numerical methods to approximate a solution, but we can't find one analytically.
  • 20. Fitzhugh-Nagumo, is another system of equations that we've seen: dV/dt = (a-V)(V-1)V – v dv/dt = (βV-γv-δ)ϵ  You've approximated it numerically and you'll be doing more of that.  There is also another way to analyze its behavior.
  • 21. Phase Plane Analysis •We are going to think of the solutions to the equations as points on the (V,v) plane. •For example, if V is .5 and v is .5, what is dv/dt? dV/dt? dV/dt=(0.1-0.5)(0.5-1)(0.5)-(.5)=-0.37750 dv/dt = 0.01(0.5*0.5 – 1*0.5 – 0) = -0.0025000
  • 22.  So at the point (0.5, 0.5) on the (V,v) plane there is a tangent that points in about the (-0.4, 0.0) direction.  In other words, if the system has the values (0.5, 0,5), its V value (the membrane potential) will be decreasing, and v will not be changing very much.  We can plot lots of tangents and see how the functions behave over the plane.
  • 23.  We can also see how the functions behave when one is held at zero.  The V nullcline is the curve that we find if dV/dt is zero.  The v nullcline is the curve that we find if dv/dt is zero.
  • 24.
  • 25. Exercise: Find the formulas for the V and v nullclines in terms of V. 0 = (a-V)(V-1)V – v 0 = (βV-γv-δ)ϵ In Octave:  Use V = -2 to 2  Use axis to set the x axis to -2 to 2 and the y axis to -1, 1.  Plot the nullclines on one graph. (a=0.1, beta=0.5, gamma=1, delta=0, epsilon=0.01)
  • 26.  We can look at a simulation of the Fitzhugh- Nagumo phase plane at thevirtualheart.org.  The applet on top shows the phase plane along with the tangent lines. Click on a starting point to see how the system behaves.  The applet on the bottom plots V (U) and v over time.  http://thevirtualheart.org/java/fhnphase.html
  • 27. Exercises:  Try the parameter changes suggested on the page.  Try to determine, the minimum value of delta that will make the system auto- oscillatory.  How does the intersection point of the two nullclines relate to the behavior of the system?