Website designing compay in noida

Css Founder
Css FounderCssFounder Pvt Ltd
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))
Website designing compay in noida
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.
Website designing compay in noida
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?
1 de 27

Recomendados

Admission in India 2014 por
Admission in India 2014Admission in India 2014
Admission in India 2014Edhole.com
227 vistas28 diapositivas
Rodriguez_THINK_TANK_Difficult_Problem_12 por
Rodriguez_THINK_TANK_Difficult_Problem_12Rodriguez_THINK_TANK_Difficult_Problem_12
Rodriguez_THINK_TANK_Difficult_Problem_12​Iván Rodríguez
65 vistas2 diapositivas
Tips manejo de 1er parcial fula metodos numericos 2010 por
Tips manejo de 1er parcial   fula metodos numericos 2010Tips manejo de 1er parcial   fula metodos numericos 2010
Tips manejo de 1er parcial fula metodos numericos 2010HernanFula
194 vistas9 diapositivas
Lesson 3: Continuity por
Lesson 3: ContinuityLesson 3: Continuity
Lesson 3: ContinuityMatthew Leingang
1.2K vistas40 diapositivas
attractive ppt of Regression assumption by ammara aftab por
attractive ppt of Regression assumption by ammara aftabattractive ppt of Regression assumption by ammara aftab
attractive ppt of Regression assumption by ammara aftabUniversity of Karachi
435 vistas53 diapositivas
Limits of functions por
Limits of functionsLimits of functions
Limits of functionsLouie Joy Rosit
3.4K vistas20 diapositivas

Más contenido relacionado

La actualidad más candente

__limite functions.sect22-24 por
  __limite functions.sect22-24  __limite functions.sect22-24
__limite functions.sect22-24argonaut2
2.1K vistas41 diapositivas
U3 Cn1 Derivatives por
U3 Cn1 DerivativesU3 Cn1 Derivatives
U3 Cn1 DerivativesAlexander Burt
167 vistas7 diapositivas
Continuity por
ContinuityContinuity
ContinuityPhil Saraspe
2.1K vistas13 diapositivas
Limits por
LimitsLimits
Limitsadmercano101
12.7K vistas20 diapositivas
The Graph Minor Theorem: a walk on the wild side of graphs por
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
293 vistas31 diapositivas
Exponential functions por
Exponential functionsExponential functions
Exponential functionsJessica Garcia
24.6K vistas38 diapositivas

La actualidad más candente(19)

__limite functions.sect22-24 por argonaut2
  __limite functions.sect22-24  __limite functions.sect22-24
__limite functions.sect22-24
argonaut22.1K vistas
The Graph Minor Theorem: a walk on the wild side of graphs por Marco Benini
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
Marco Benini293 vistas
Exponential functions por Jessica Garcia
Exponential functionsExponential functions
Exponential functions
Jessica Garcia24.6K vistas
Calculus II - 23 por David Mao
Calculus II - 23Calculus II - 23
Calculus II - 23
David Mao483 vistas
7.4 inverse functions por hisema01
7.4 inverse functions7.4 inverse functions
7.4 inverse functions
hisema011.3K vistas
Exponential functions por omar_egypt
Exponential functionsExponential functions
Exponential functions
omar_egypt7.8K vistas
Exponential formula presentation por Oliver Zhang
Exponential formula presentationExponential formula presentation
Exponential formula presentation
Oliver Zhang449 vistas
Applied Calculus: Continuity and Discontinuity of Function por baetulilm
Applied Calculus: Continuity and Discontinuity of FunctionApplied Calculus: Continuity and Discontinuity of Function
Applied Calculus: Continuity and Discontinuity of Function
baetulilm1.7K vistas
Introduction to the Theory of Computation, Winter 2003 A. Hevia and J. Mao S... por parmeet834
 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...
parmeet83467 vistas
Lesson 13: Exponential and Logarithmic Functions (slides) por Matthew Leingang
Lesson 13: Exponential and Logarithmic Functions (slides)Lesson 13: Exponential and Logarithmic Functions (slides)
Lesson 13: Exponential and Logarithmic Functions (slides)
Matthew Leingang3.6K vistas
2.2 Direct Variation por leblance
2.2 Direct Variation2.2 Direct Variation
2.2 Direct Variation
leblance1.8K vistas

Destacado

Весь урок в одній презентації por
Весь урок в одній презентаціїВесь урок в одній презентації
Весь урок в одній презентаціїШкола №7 Миргород
339 vistas37 diapositivas
Agenda feb 4 2013 por
Agenda feb 4 2013Agenda feb 4 2013
Agenda feb 4 2013JUA MANUEL GONZALEZ
88 vistas1 diapositiva
(9) Datejust Lady por
(9) Datejust Lady(9) Datejust Lady
(9) Datejust LadyDindin Watoto
1.1K vistas10 diapositivas
R166 02 por
R166 02R166 02
R166 02grazi87
188 vistas18 diapositivas
Install note por
Install noteInstall note
Install noteapurbamaity
114 vistas1 diapositiva
Pinpointe analyst-review-june-2011 por
Pinpointe analyst-review-june-2011Pinpointe analyst-review-june-2011
Pinpointe analyst-review-june-2011GetApp
502 vistas11 diapositivas

Similar a Website designing compay in noida

DiffEqPresent.ppt por
DiffEqPresent.pptDiffEqPresent.ppt
DiffEqPresent.pptChristineTorrepenida1
5 vistas27 diapositivas
DiffEqPresent.ppt por
DiffEqPresent.pptDiffEqPresent.ppt
DiffEqPresent.pptraihankhan67
4 vistas27 diapositivas
DiffEqPresent.ppt por
DiffEqPresent.pptDiffEqPresent.ppt
DiffEqPresent.pptprince628991
8 vistas27 diapositivas
Indefinite Integral por
Indefinite IntegralIndefinite Integral
Indefinite IntegralRich Elle
2.4K vistas8 diapositivas
Integration por
IntegrationIntegration
Integrationsakhi pathak
212 vistas72 diapositivas
Derivative rules.docx por
Derivative rules.docxDerivative rules.docx
Derivative rules.docxRose Mary Tania Arini
97 vistas21 diapositivas

Similar a Website designing compay in noida(20)

Indefinite Integral por Rich Elle
Indefinite IntegralIndefinite Integral
Indefinite Integral
Rich Elle2.4K vistas
Erin catto numericalmethods por oscarbg
Erin catto numericalmethodsErin catto numericalmethods
Erin catto numericalmethods
oscarbg927 vistas
Lambda Calculus by Dustin Mulcahey por Hakka Labs
Lambda Calculus by Dustin Mulcahey Lambda Calculus by Dustin Mulcahey
Lambda Calculus by Dustin Mulcahey
Hakka Labs5.2K vistas
Derivación e integración de funciones de varias variables por RicardoAzocar3
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
RicardoAzocar313 vistas
11Functions-in-several-variables-and-double-integrals.pdf por CristianBatongbakal
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 por OpenCourse
Teachingtools4kidsbasic/calculusTeachingtools4kidsbasic/calculus
Teachingtools4kidsbasic/calculus
OpenCourse192 vistas
APPLICATION OF PARTIAL DIFFERENTIATION por Dhrupal Patel
APPLICATION OF PARTIAL DIFFERENTIATIONAPPLICATION OF PARTIAL DIFFERENTIATION
APPLICATION OF PARTIAL DIFFERENTIATION
Dhrupal Patel17.4K vistas
signal and system Dirac delta functions (1) por iqbal ahmad
signal and system Dirac delta functions (1)signal and system Dirac delta functions (1)
signal and system Dirac delta functions (1)
iqbal ahmad3.3K vistas
Lecture13p.pdf.pdfThedeepness of freedom are threevalues.docx por croysierkathey
Lecture13p.pdf.pdfThedeepness of freedom are threevalues.docxLecture13p.pdf.pdfThedeepness of freedom are threevalues.docx
Lecture13p.pdf.pdfThedeepness of freedom are threevalues.docx
croysierkathey3 vistas

Más de Css Founder

Cssfounder.com website designing company in delhi por
Cssfounder.com website designing company in delhiCssfounder.com website designing company in delhi
Cssfounder.com website designing company in delhiCss Founder
118 vistas32 diapositivas
Internet technology and web designing por
Internet technology and web designingInternet technology and web designing
Internet technology and web designingCss Founder
85 vistas23 diapositivas
Web page design-cssfounder por
Web page design-cssfounderWeb page design-cssfounder
Web page design-cssfounderCss Founder
189 vistas166 diapositivas
Tech dev cssfounder.com por
Tech dev cssfounder.comTech dev cssfounder.com
Tech dev cssfounder.comCss Founder
49 vistas53 diapositivas
Digital india-cssfounder.com por
Digital india-cssfounder.comDigital india-cssfounder.com
Digital india-cssfounder.comCss Founder
365 vistas19 diapositivas
Poverty inindia CssFounder.com por
Poverty inindia CssFounder.comPoverty inindia CssFounder.com
Poverty inindia CssFounder.comCss Founder
77 vistas10 diapositivas

Más de Css Founder(20)

Cssfounder.com website designing company in delhi por Css Founder
Cssfounder.com website designing company in delhiCssfounder.com website designing company in delhi
Cssfounder.com website designing company in delhi
Css Founder118 vistas
Internet technology and web designing por Css Founder
Internet technology and web designingInternet technology and web designing
Internet technology and web designing
Css Founder85 vistas
Web page design-cssfounder por Css Founder
Web page design-cssfounderWeb page design-cssfounder
Web page design-cssfounder
Css Founder189 vistas
Tech dev cssfounder.com por Css Founder
Tech dev cssfounder.comTech dev cssfounder.com
Tech dev cssfounder.com
Css Founder49 vistas
Digital india-cssfounder.com por Css Founder
Digital india-cssfounder.comDigital india-cssfounder.com
Digital india-cssfounder.com
Css Founder365 vistas
Poverty inindia CssFounder.com por Css Founder
Poverty inindia CssFounder.comPoverty inindia CssFounder.com
Poverty inindia CssFounder.com
Css Founder77 vistas
Poverty in india Cssfounder.com por Css Founder
Poverty in india Cssfounder.comPoverty in india Cssfounder.com
Poverty in india Cssfounder.com
Css Founder115 vistas
Website designing company in delhi e commerce por Css Founder
Website designing company in delhi e commerceWebsite designing company in delhi e commerce
Website designing company in delhi e commerce
Css Founder63 vistas
Website designing company_in_delhi blogging por Css Founder
Website designing company_in_delhi bloggingWebsite designing company_in_delhi blogging
Website designing company_in_delhi blogging
Css Founder155 vistas
Website designing company in delhi blog powerpoint por Css Founder
Website designing company in delhi blog powerpointWebsite designing company in delhi blog powerpoint
Website designing company in delhi blog powerpoint
Css Founder116 vistas
Website designing company_in_delhi e-business por Css Founder
Website designing company_in_delhi e-businessWebsite designing company_in_delhi e-business
Website designing company_in_delhi e-business
Css Founder75 vistas
Website designing company_in_mumbai_digital india por Css Founder
Website designing company_in_mumbai_digital indiaWebsite designing company_in_mumbai_digital india
Website designing company_in_mumbai_digital india
Css Founder69 vistas
Website designing company_in_delhi_digitization practices por Css Founder
Website designing company_in_delhi_digitization practicesWebsite designing company_in_delhi_digitization practices
Website designing company_in_delhi_digitization practices
Css Founder148 vistas
Website designing company_in_delhi_education por Css Founder
Website designing company_in_delhi_educationWebsite designing company_in_delhi_education
Website designing company_in_delhi_education
Css Founder68 vistas
Website designing company_in_delhi_education system por Css Founder
Website designing company_in_delhi_education systemWebsite designing company_in_delhi_education system
Website designing company_in_delhi_education system
Css Founder97 vistas
Website designing company_in_delhi_phpwebdevelopment por Css Founder
Website designing company_in_delhi_phpwebdevelopmentWebsite designing company_in_delhi_phpwebdevelopment
Website designing company_in_delhi_phpwebdevelopment
Css Founder82 vistas
Website development process por Css Founder
Website development processWebsite development process
Website development process
Css Founder65 vistas
Webdesign website development_company_surat por Css Founder
Webdesign website development_company_suratWebdesign website development_company_surat
Webdesign website development_company_surat
Css Founder73 vistas
Internet website designing_company_in_delhi por Css Founder
Internet website designing_company_in_delhiInternet website designing_company_in_delhi
Internet website designing_company_in_delhi
Css Founder89 vistas
Website designing company in delhi por Css Founder
Website designing company in delhiWebsite designing company in delhi
Website designing company in delhi
Css Founder86 vistas

Último

TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f... por
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc
72 vistas29 diapositivas
VNF Integration and Support in CloudStack - Wei Zhou - ShapeBlue por
VNF Integration and Support in CloudStack - Wei Zhou - ShapeBlueVNF Integration and Support in CloudStack - Wei Zhou - ShapeBlue
VNF Integration and Support in CloudStack - Wei Zhou - ShapeBlueShapeBlue
62 vistas54 diapositivas
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or... por
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...ShapeBlue
64 vistas20 diapositivas
"Surviving highload with Node.js", Andrii Shumada por
"Surviving highload with Node.js", Andrii Shumada "Surviving highload with Node.js", Andrii Shumada
"Surviving highload with Node.js", Andrii Shumada Fwdays
33 vistas29 diapositivas
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue por
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlueCloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlueShapeBlue
25 vistas13 diapositivas
The Research Portal of Catalonia: Growing more (information) & more (services) por
The Research Portal of Catalonia: Growing more (information) & more (services)The Research Portal of Catalonia: Growing more (information) & more (services)
The Research Portal of Catalonia: Growing more (information) & more (services)CSUC - Consorci de Serveis Universitaris de Catalunya
115 vistas25 diapositivas

Último(20)

TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f... por TrustArc
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc72 vistas
VNF Integration and Support in CloudStack - Wei Zhou - ShapeBlue por ShapeBlue
VNF Integration and Support in CloudStack - Wei Zhou - ShapeBlueVNF Integration and Support in CloudStack - Wei Zhou - ShapeBlue
VNF Integration and Support in CloudStack - Wei Zhou - ShapeBlue
ShapeBlue62 vistas
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or... por ShapeBlue
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
ShapeBlue64 vistas
"Surviving highload with Node.js", Andrii Shumada por Fwdays
"Surviving highload with Node.js", Andrii Shumada "Surviving highload with Node.js", Andrii Shumada
"Surviving highload with Node.js", Andrii Shumada
Fwdays33 vistas
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue por ShapeBlue
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlueCloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue
ShapeBlue25 vistas
NTGapps NTG LowCode Platform por Mustafa Kuğu
NTGapps NTG LowCode Platform NTGapps NTG LowCode Platform
NTGapps NTG LowCode Platform
Mustafa Kuğu28 vistas
HTTP headers that make your website go faster - devs.gent November 2023 por Thijs Feryn
HTTP headers that make your website go faster - devs.gent November 2023HTTP headers that make your website go faster - devs.gent November 2023
HTTP headers that make your website go faster - devs.gent November 2023
Thijs Feryn26 vistas
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit... por ShapeBlue
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...
ShapeBlue40 vistas
Updates on the LINSTOR Driver for CloudStack - Rene Peinthor - LINBIT por ShapeBlue
Updates on the LINSTOR Driver for CloudStack - Rene Peinthor - LINBITUpdates on the LINSTOR Driver for CloudStack - Rene Peinthor - LINBIT
Updates on the LINSTOR Driver for CloudStack - Rene Peinthor - LINBIT
ShapeBlue66 vistas
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha... por ShapeBlue
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...
ShapeBlue54 vistas
Business Analyst Series 2023 - Week 3 Session 5 por DianaGray10
Business Analyst Series 2023 -  Week 3 Session 5Business Analyst Series 2023 -  Week 3 Session 5
Business Analyst Series 2023 - Week 3 Session 5
DianaGray10345 vistas
DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti... por ShapeBlue
DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...
DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...
ShapeBlue26 vistas
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T por ShapeBlue
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&TCloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T
ShapeBlue38 vistas
Why and How CloudStack at weSystems - Stephan Bienek - weSystems por ShapeBlue
Why and How CloudStack at weSystems - Stephan Bienek - weSystemsWhy and How CloudStack at weSystems - Stephan Bienek - weSystems
Why and How CloudStack at weSystems - Stephan Bienek - weSystems
ShapeBlue81 vistas
Keynote Talk: Open Source is Not Dead - Charles Schulz - Vates por ShapeBlue
Keynote Talk: Open Source is Not Dead - Charles Schulz - VatesKeynote Talk: Open Source is Not Dead - Charles Schulz - Vates
Keynote Talk: Open Source is Not Dead - Charles Schulz - Vates
ShapeBlue84 vistas

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))
  • 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.
  • 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?