SlideShare a Scribd company logo
Write down the four (4) nonlinear regression models covered in class, i.e. both the name of the
model and their functional form showing their respective regression coefficients. A rapidly
growing bacteria has been discovered with a growth rate as shown in the table. Analyze this date
using a power law model. First linearize the data in the table based on the power law model, call
this new linearized data x and y. Next, determine the coefficients a_0 and a_1 of a linear
regression y = a_0 + a_1x for the linearized power law data x and y, and compute the correlation
coefficient for the liner regression. Note that you are not being asked to do a linear regression of
the data in the table but rather a linear regression of the linearized version of that data. Once you
compute a_0 and a_1 use these to determine the coefficients of the power law model. Write a
Matlab script that uses the polyfit function to determine the regression coefficients of a second
order polynomial fit to data in the table. In the same script, write down the code for using the
polyval command to determine the value of the regression curve at the observed times.
Solution
Nonlinear regression is a statistical technique that helps describe nonlinear relationships in
experimental data. A nonlinear regression model can be written Yn = f(xn, ) + Zn where f is the
expectation function and xn is a vector of associated regressor variables or independent variables
for the nth case.
A nonlinear model is one in which at least one of the parameters appears nonlinearly. More
formally, in a nonlinear model, at least one derivative with respect to a parameter should involve
that parameter. Examples of a nonlinear model are:
Y(t) = exp(at+bt2)
Y(t) = at + exp(-bt).
Important non linear growth models
1.Logistic Model
This model is represented by the differential equation
dN/dt = rN (1-N/K).
Integrating, we get
N(t) = K / [1+(K/No-1) exp(-rt)]
The graph of N(t) versus t is elongated S-shaped and the curve is symmetrical about its point of
inflexion.
2.Malthus Model
If N(t) denotes the population size or biomass at time t and r is the intrinsic growth rate, then the
rate of growth of population size is given by
dN/dt = rN.
Integrating, we get
N(t) = No exp (rt),
where No denotes the population size at t=0. Thus this law entails an exponential increase for
r>0. Furthermore, N(t) à as t à , which cannot happen in reality.
3. Monomolecular Model
This model describes the progress of a growth situation in which it is believed that the rate of
growth at any time is proportional to the resources yet to be achieved, i.e.
dN/dt = r(K-N),
where K is the carrying size of the system. Integrating (3.3), we get
N(t) = K-(K-No) exp (-rt).
4. Richards Model.
This model is given by dN/dt = rN (KN – Nm)/mKm which, on integration, gives N(t )=K N0 /[
N0+ (KN – N0m) exp (-rt)]1/m.
Unlike the earlier models, this model has four parameters
Hours (H)
10
20
40
50
No fo bacteria (N)
25
70
380
550
610
b)
N = b H m
Log10 N = logb + mLog10H (below data are tabulated in excel)
xi
Log10N
1
1.301
1.4771
1.6021
1.699
7.079181246
xi
yi
Log10H
1.3979
1.8451
2.5798
2.7404
2.7853
11.34851417
yi
xi.yi
1.3979
2.4005
3.8107
4.3902
4.7322
16.73153836
xiyi
(xi)^2
1
1.6927
2.1819
2.5666
2.8865
10.32766154
(xi)^2
m=2.18
= -0.815 => b=0.153
N= 0.153H2.18
%// Define points
X = [10 20 30 40 50];
Y = [ 25 70 380 550 610];
Nonlinear regression is a statistical technique that helps describe nonlinear relationships in
experimental data. A nonlinear regression model can be written Yn = f(xn, ) + Zn where f is the
expectation function and xn is a vector of associated regressor variables or independent variables
for the nth case.
A nonlinear model is one in which at least one of the parameters appears nonlinearly. More
formally, in a nonlinear model, at least one derivative with respect to a parameter should involve
that parameter. Examples of a nonlinear model are:
Y(t) = exp(at+bt2)
Y(t) = at + exp(-bt).
Important non linear growth models
1.Logistic Model
This model is represented by the differential equation
dN/dt = rN (1-N/K).
Integrating, we get
N(t) = K / [1+(K/No-1) exp(-rt)]
The graph of N(t) versus t is elongated S-shaped and the curve is symmetrical about its point of
inflexion.
2.Malthus Model
If N(t) denotes the population size or biomass at time t and r is the intrinsic growth rate, then the
rate of growth of population size is given by
dN/dt = rN.
Integrating, we get
N(t) = No exp (rt),
where No denotes the population size at t=0. Thus this law entails an exponential increase for
r>0. Furthermore, N(t) à as t à , which cannot happen in reality.
3. Monomolecular Model
This model describes the progress of a growth situation in which it is believed that the rate of
growth at any time is proportional to the resources yet to be achieved, i.e.
dN/dt = r(K-N),
where K is the carrying size of the system. Integrating (3.3), we get
N(t) = K-(K-No) exp (-rt).
4. Richards Model.
This model is given by dN/dt = rN (KN – Nm)/mKm which, on integration, gives N(t )=K N0 /[
N0+ (KN – N0m) exp (-rt)]1/m.
Unlike the earlier models, this model has four parameters
Hours (H)
10
20
40
50
No fo bacteria (N)
25
70
380
550
610
b)
N = b H m
Log10 N = logb + mLog10H (below data are tabulated in excel)
xi
Log10N
1
1.301
1.4771
1.6021
1.699
7.079181246=
xi
yi
Log10H
1.3979
1.8451
2.5798
2.7404
2.7853
11.34851417=
yi
xi.yi
1.3979
2.4005
3.8107
4.3902
4.7322
16.73153836
xiyi
(xi)^2
1
1.6927
2.1819
2.5666
2.8865
10.32766154
(xi)^2
m=(nxiyi-xiyi)/(n(xi)^2-(xi)^2)
m=2.18
= -0.815 => b=0.153
N= 0.153H2.18
%// Define points
X = [10 20 30 40 50];
Y = [ 25 70 380 550 610];
Hours (H)
10
20
40
50
No fo bacteria (N)
25
70
380
550
610

More Related Content

Similar to Write down the four (4) nonlinear regression models covered in class,.pdf

Differential equations final -mams
Differential equations final -mamsDifferential equations final -mams
Differential equations final -mams
armanimams
 
Numerical Methods
Numerical MethodsNumerical Methods
Numerical Methods
Teja Ande
 
Elementary signals
Elementary signalsElementary signals
Elementary signals
National Engineering College
 
Fibonacci_Hubble
Fibonacci_HubbleFibonacci_Hubble
Fibonacci_HubbleMarc King
 
PartOne
PartOnePartOne
PartOne?? ?
 
Hull White model presentation
Hull White model presentationHull White model presentation
Hull White model presentation
Stephan Chang
 
Dycops2019
Dycops2019 Dycops2019
Dycops2019
Jéssyca Bessa
 
Chapter26
Chapter26Chapter26
Chapter26
SHUBHAMKUMAR1487
 
652Project.pdf
652Project.pdf652Project.pdf
652Project.pdf
Matt Moradi
 
torsionbinormalnotes
torsionbinormalnotestorsionbinormalnotes
torsionbinormalnotesJeremy Lane
 
Statistics lab 1
Statistics lab 1Statistics lab 1
Statistics lab 1
University of Salerno
 
AIOU Code 803 Mathematics for Economists Semester Spring 2022 Assignment 2.pptx
AIOU Code 803 Mathematics for Economists Semester Spring 2022 Assignment 2.pptxAIOU Code 803 Mathematics for Economists Semester Spring 2022 Assignment 2.pptx
AIOU Code 803 Mathematics for Economists Semester Spring 2022 Assignment 2.pptx
Zawarali786
 
Chapter_09_ParameterEstimation.pptx
Chapter_09_ParameterEstimation.pptxChapter_09_ParameterEstimation.pptx
Chapter_09_ParameterEstimation.pptx
VimalMehta19
 
Linear regression
Linear regressionLinear regression
Linear regression
Zoya Bylinskii
 
Environmental Engineering Assignment Help
Environmental Engineering Assignment HelpEnvironmental Engineering Assignment Help
Environmental Engineering Assignment Help
Matlab Assignment Experts
 
Design and analysis of ra sort
Design and analysis of ra sortDesign and analysis of ra sort
Design and analysis of ra sort
ijfcstjournal
 
Algorithmic Thermodynamics
Algorithmic ThermodynamicsAlgorithmic Thermodynamics
Algorithmic Thermodynamics
Sunny Kr
 
MC0082 –Theory of Computer Science
MC0082 –Theory of Computer ScienceMC0082 –Theory of Computer Science
MC0082 –Theory of Computer Science
Aravind NC
 

Similar to Write down the four (4) nonlinear regression models covered in class,.pdf (20)

Differential equations final -mams
Differential equations final -mamsDifferential equations final -mams
Differential equations final -mams
 
Numerical Methods
Numerical MethodsNumerical Methods
Numerical Methods
 
SwingOptions
SwingOptionsSwingOptions
SwingOptions
 
Elementary signals
Elementary signalsElementary signals
Elementary signals
 
Fibonacci_Hubble
Fibonacci_HubbleFibonacci_Hubble
Fibonacci_Hubble
 
PartOne
PartOnePartOne
PartOne
 
Introduction to R
Introduction to RIntroduction to R
Introduction to R
 
Hull White model presentation
Hull White model presentationHull White model presentation
Hull White model presentation
 
Dycops2019
Dycops2019 Dycops2019
Dycops2019
 
Chapter26
Chapter26Chapter26
Chapter26
 
652Project.pdf
652Project.pdf652Project.pdf
652Project.pdf
 
torsionbinormalnotes
torsionbinormalnotestorsionbinormalnotes
torsionbinormalnotes
 
Statistics lab 1
Statistics lab 1Statistics lab 1
Statistics lab 1
 
AIOU Code 803 Mathematics for Economists Semester Spring 2022 Assignment 2.pptx
AIOU Code 803 Mathematics for Economists Semester Spring 2022 Assignment 2.pptxAIOU Code 803 Mathematics for Economists Semester Spring 2022 Assignment 2.pptx
AIOU Code 803 Mathematics for Economists Semester Spring 2022 Assignment 2.pptx
 
Chapter_09_ParameterEstimation.pptx
Chapter_09_ParameterEstimation.pptxChapter_09_ParameterEstimation.pptx
Chapter_09_ParameterEstimation.pptx
 
Linear regression
Linear regressionLinear regression
Linear regression
 
Environmental Engineering Assignment Help
Environmental Engineering Assignment HelpEnvironmental Engineering Assignment Help
Environmental Engineering Assignment Help
 
Design and analysis of ra sort
Design and analysis of ra sortDesign and analysis of ra sort
Design and analysis of ra sort
 
Algorithmic Thermodynamics
Algorithmic ThermodynamicsAlgorithmic Thermodynamics
Algorithmic Thermodynamics
 
MC0082 –Theory of Computer Science
MC0082 –Theory of Computer ScienceMC0082 –Theory of Computer Science
MC0082 –Theory of Computer Science
 

More from jyothimuppasani1

How does an open source operating system like Linux® affect Internet.pdf
How does an open source operating system like Linux® affect Internet.pdfHow does an open source operating system like Linux® affect Internet.pdf
How does an open source operating system like Linux® affect Internet.pdf
jyothimuppasani1
 
Help please!!(Include your modified DList.java source code file in.pdf
Help please!!(Include your modified DList.java source code file in.pdfHelp please!!(Include your modified DList.java source code file in.pdf
Help please!!(Include your modified DList.java source code file in.pdf
jyothimuppasani1
 
how can I replace the Newsfeed text with a custom on in SharePoi.pdf
how can I replace the Newsfeed text with a custom on in SharePoi.pdfhow can I replace the Newsfeed text with a custom on in SharePoi.pdf
how can I replace the Newsfeed text with a custom on in SharePoi.pdf
jyothimuppasani1
 
Hello!This is Java assignment applet.Can someone help me writing.pdf
Hello!This is Java assignment applet.Can someone help me writing.pdfHello!This is Java assignment applet.Can someone help me writing.pdf
Hello!This is Java assignment applet.Can someone help me writing.pdf
jyothimuppasani1
 
For each of the following reseach questions identify the observation.pdf
For each of the following reseach questions identify the observation.pdfFor each of the following reseach questions identify the observation.pdf
For each of the following reseach questions identify the observation.pdf
jyothimuppasani1
 
Find an Eulerian trail in the following graph. Be sure to indicate th.pdf
Find an Eulerian trail in the following graph. Be sure to indicate th.pdfFind an Eulerian trail in the following graph. Be sure to indicate th.pdf
Find an Eulerian trail in the following graph. Be sure to indicate th.pdf
jyothimuppasani1
 
File encryption. [32] Write a program which accepts a filename as a .pdf
File encryption. [32] Write a program which accepts a filename as a .pdfFile encryption. [32] Write a program which accepts a filename as a .pdf
File encryption. [32] Write a program which accepts a filename as a .pdf
jyothimuppasani1
 
Explain the relevance that medical standards of practice have to one.pdf
Explain the relevance that medical standards of practice have to one.pdfExplain the relevance that medical standards of practice have to one.pdf
Explain the relevance that medical standards of practice have to one.pdf
jyothimuppasani1
 
Find the mission and values statements for four different hospita.pdf
Find the mission and values statements for four different hospita.pdfFind the mission and values statements for four different hospita.pdf
Find the mission and values statements for four different hospita.pdf
jyothimuppasani1
 
Did colonial rule freeze colonized societies by preserving old s.pdf
Did colonial rule freeze colonized societies by preserving old s.pdfDid colonial rule freeze colonized societies by preserving old s.pdf
Did colonial rule freeze colonized societies by preserving old s.pdf
jyothimuppasani1
 
Do you think that nonhuman animals have interests Does this mean th.pdf
Do you think that nonhuman animals have interests Does this mean th.pdfDo you think that nonhuman animals have interests Does this mean th.pdf
Do you think that nonhuman animals have interests Does this mean th.pdf
jyothimuppasani1
 
Discuss the importance of recognizing and implementing different ent.pdf
Discuss the importance of recognizing and implementing different ent.pdfDiscuss the importance of recognizing and implementing different ent.pdf
Discuss the importance of recognizing and implementing different ent.pdf
jyothimuppasani1
 
Considering the challenges she is facing, what Anitas plan before .pdf
Considering the challenges she is facing, what Anitas plan before .pdfConsidering the challenges she is facing, what Anitas plan before .pdf
Considering the challenges she is facing, what Anitas plan before .pdf
jyothimuppasani1
 
Data Structure in C++Doubly Linked Lists of ints httpstaffwww.pdf
Data Structure in C++Doubly Linked Lists of ints httpstaffwww.pdfData Structure in C++Doubly Linked Lists of ints httpstaffwww.pdf
Data Structure in C++Doubly Linked Lists of ints httpstaffwww.pdf
jyothimuppasani1
 
Conceptual skills are most important at theSolutionConceptual .pdf
Conceptual skills are most important at theSolutionConceptual .pdfConceptual skills are most important at theSolutionConceptual .pdf
Conceptual skills are most important at theSolutionConceptual .pdf
jyothimuppasani1
 
A variable whose scope is restricted to the method where it was decl.pdf
A variable whose scope is restricted to the method where it was decl.pdfA variable whose scope is restricted to the method where it was decl.pdf
A variable whose scope is restricted to the method where it was decl.pdf
jyothimuppasani1
 
•Design (create) 3 questions for a quiz show game and design regular.pdf
•Design (create) 3 questions for a quiz show game and design regular.pdf•Design (create) 3 questions for a quiz show game and design regular.pdf
•Design (create) 3 questions for a quiz show game and design regular.pdf
jyothimuppasani1
 
You are to write a GUI program that will allow a user to buy, sell a.pdf
You are to write a GUI program that will allow a user to buy, sell a.pdfYou are to write a GUI program that will allow a user to buy, sell a.pdf
You are to write a GUI program that will allow a user to buy, sell a.pdf
jyothimuppasani1
 
write the To Dos to get the exact outputNOte A valid Fraction .pdf
write the To Dos to get the exact outputNOte A valid Fraction .pdfwrite the To Dos to get the exact outputNOte A valid Fraction .pdf
write the To Dos to get the exact outputNOte A valid Fraction .pdf
jyothimuppasani1
 
What are the factors that contribute to H+ gain or loss How do lung.pdf
What are the factors that contribute to H+ gain or loss How do lung.pdfWhat are the factors that contribute to H+ gain or loss How do lung.pdf
What are the factors that contribute to H+ gain or loss How do lung.pdf
jyothimuppasani1
 

More from jyothimuppasani1 (20)

How does an open source operating system like Linux® affect Internet.pdf
How does an open source operating system like Linux® affect Internet.pdfHow does an open source operating system like Linux® affect Internet.pdf
How does an open source operating system like Linux® affect Internet.pdf
 
Help please!!(Include your modified DList.java source code file in.pdf
Help please!!(Include your modified DList.java source code file in.pdfHelp please!!(Include your modified DList.java source code file in.pdf
Help please!!(Include your modified DList.java source code file in.pdf
 
how can I replace the Newsfeed text with a custom on in SharePoi.pdf
how can I replace the Newsfeed text with a custom on in SharePoi.pdfhow can I replace the Newsfeed text with a custom on in SharePoi.pdf
how can I replace the Newsfeed text with a custom on in SharePoi.pdf
 
Hello!This is Java assignment applet.Can someone help me writing.pdf
Hello!This is Java assignment applet.Can someone help me writing.pdfHello!This is Java assignment applet.Can someone help me writing.pdf
Hello!This is Java assignment applet.Can someone help me writing.pdf
 
For each of the following reseach questions identify the observation.pdf
For each of the following reseach questions identify the observation.pdfFor each of the following reseach questions identify the observation.pdf
For each of the following reseach questions identify the observation.pdf
 
Find an Eulerian trail in the following graph. Be sure to indicate th.pdf
Find an Eulerian trail in the following graph. Be sure to indicate th.pdfFind an Eulerian trail in the following graph. Be sure to indicate th.pdf
Find an Eulerian trail in the following graph. Be sure to indicate th.pdf
 
File encryption. [32] Write a program which accepts a filename as a .pdf
File encryption. [32] Write a program which accepts a filename as a .pdfFile encryption. [32] Write a program which accepts a filename as a .pdf
File encryption. [32] Write a program which accepts a filename as a .pdf
 
Explain the relevance that medical standards of practice have to one.pdf
Explain the relevance that medical standards of practice have to one.pdfExplain the relevance that medical standards of practice have to one.pdf
Explain the relevance that medical standards of practice have to one.pdf
 
Find the mission and values statements for four different hospita.pdf
Find the mission and values statements for four different hospita.pdfFind the mission and values statements for four different hospita.pdf
Find the mission and values statements for four different hospita.pdf
 
Did colonial rule freeze colonized societies by preserving old s.pdf
Did colonial rule freeze colonized societies by preserving old s.pdfDid colonial rule freeze colonized societies by preserving old s.pdf
Did colonial rule freeze colonized societies by preserving old s.pdf
 
Do you think that nonhuman animals have interests Does this mean th.pdf
Do you think that nonhuman animals have interests Does this mean th.pdfDo you think that nonhuman animals have interests Does this mean th.pdf
Do you think that nonhuman animals have interests Does this mean th.pdf
 
Discuss the importance of recognizing and implementing different ent.pdf
Discuss the importance of recognizing and implementing different ent.pdfDiscuss the importance of recognizing and implementing different ent.pdf
Discuss the importance of recognizing and implementing different ent.pdf
 
Considering the challenges she is facing, what Anitas plan before .pdf
Considering the challenges she is facing, what Anitas plan before .pdfConsidering the challenges she is facing, what Anitas plan before .pdf
Considering the challenges she is facing, what Anitas plan before .pdf
 
Data Structure in C++Doubly Linked Lists of ints httpstaffwww.pdf
Data Structure in C++Doubly Linked Lists of ints httpstaffwww.pdfData Structure in C++Doubly Linked Lists of ints httpstaffwww.pdf
Data Structure in C++Doubly Linked Lists of ints httpstaffwww.pdf
 
Conceptual skills are most important at theSolutionConceptual .pdf
Conceptual skills are most important at theSolutionConceptual .pdfConceptual skills are most important at theSolutionConceptual .pdf
Conceptual skills are most important at theSolutionConceptual .pdf
 
A variable whose scope is restricted to the method where it was decl.pdf
A variable whose scope is restricted to the method where it was decl.pdfA variable whose scope is restricted to the method where it was decl.pdf
A variable whose scope is restricted to the method where it was decl.pdf
 
•Design (create) 3 questions for a quiz show game and design regular.pdf
•Design (create) 3 questions for a quiz show game and design regular.pdf•Design (create) 3 questions for a quiz show game and design regular.pdf
•Design (create) 3 questions for a quiz show game and design regular.pdf
 
You are to write a GUI program that will allow a user to buy, sell a.pdf
You are to write a GUI program that will allow a user to buy, sell a.pdfYou are to write a GUI program that will allow a user to buy, sell a.pdf
You are to write a GUI program that will allow a user to buy, sell a.pdf
 
write the To Dos to get the exact outputNOte A valid Fraction .pdf
write the To Dos to get the exact outputNOte A valid Fraction .pdfwrite the To Dos to get the exact outputNOte A valid Fraction .pdf
write the To Dos to get the exact outputNOte A valid Fraction .pdf
 
What are the factors that contribute to H+ gain or loss How do lung.pdf
What are the factors that contribute to H+ gain or loss How do lung.pdfWhat are the factors that contribute to H+ gain or loss How do lung.pdf
What are the factors that contribute to H+ gain or loss How do lung.pdf
 

Recently uploaded

aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
BhavyaRajput3
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
GeoBlogs
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
Jheel Barad
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
Peter Windle
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
Tamralipta Mahavidyalaya
 

Recently uploaded (20)

aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 

Write down the four (4) nonlinear regression models covered in class,.pdf

  • 1. Write down the four (4) nonlinear regression models covered in class, i.e. both the name of the model and their functional form showing their respective regression coefficients. A rapidly growing bacteria has been discovered with a growth rate as shown in the table. Analyze this date using a power law model. First linearize the data in the table based on the power law model, call this new linearized data x and y. Next, determine the coefficients a_0 and a_1 of a linear regression y = a_0 + a_1x for the linearized power law data x and y, and compute the correlation coefficient for the liner regression. Note that you are not being asked to do a linear regression of the data in the table but rather a linear regression of the linearized version of that data. Once you compute a_0 and a_1 use these to determine the coefficients of the power law model. Write a Matlab script that uses the polyfit function to determine the regression coefficients of a second order polynomial fit to data in the table. In the same script, write down the code for using the polyval command to determine the value of the regression curve at the observed times. Solution Nonlinear regression is a statistical technique that helps describe nonlinear relationships in experimental data. A nonlinear regression model can be written Yn = f(xn, ) + Zn where f is the expectation function and xn is a vector of associated regressor variables or independent variables for the nth case. A nonlinear model is one in which at least one of the parameters appears nonlinearly. More formally, in a nonlinear model, at least one derivative with respect to a parameter should involve that parameter. Examples of a nonlinear model are: Y(t) = exp(at+bt2) Y(t) = at + exp(-bt). Important non linear growth models 1.Logistic Model This model is represented by the differential equation dN/dt = rN (1-N/K). Integrating, we get N(t) = K / [1+(K/No-1) exp(-rt)] The graph of N(t) versus t is elongated S-shaped and the curve is symmetrical about its point of inflexion. 2.Malthus Model
  • 2. If N(t) denotes the population size or biomass at time t and r is the intrinsic growth rate, then the rate of growth of population size is given by dN/dt = rN. Integrating, we get N(t) = No exp (rt), where No denotes the population size at t=0. Thus this law entails an exponential increase for r>0. Furthermore, N(t) à as t à , which cannot happen in reality. 3. Monomolecular Model This model describes the progress of a growth situation in which it is believed that the rate of growth at any time is proportional to the resources yet to be achieved, i.e. dN/dt = r(K-N), where K is the carrying size of the system. Integrating (3.3), we get N(t) = K-(K-No) exp (-rt). 4. Richards Model. This model is given by dN/dt = rN (KN – Nm)/mKm which, on integration, gives N(t )=K N0 /[ N0+ (KN – N0m) exp (-rt)]1/m. Unlike the earlier models, this model has four parameters Hours (H) 10 20 40 50 No fo bacteria (N) 25 70 380 550 610 b)
  • 3. N = b H m Log10 N = logb + mLog10H (below data are tabulated in excel) xi Log10N 1 1.301 1.4771 1.6021 1.699 7.079181246 xi yi Log10H 1.3979 1.8451 2.5798 2.7404 2.7853 11.34851417 yi xi.yi 1.3979 2.4005 3.8107 4.3902 4.7322 16.73153836 xiyi (xi)^2 1 1.6927 2.1819 2.5666 2.8865 10.32766154 (xi)^2
  • 4. m=2.18 = -0.815 => b=0.153 N= 0.153H2.18 %// Define points X = [10 20 30 40 50]; Y = [ 25 70 380 550 610]; Nonlinear regression is a statistical technique that helps describe nonlinear relationships in experimental data. A nonlinear regression model can be written Yn = f(xn, ) + Zn where f is the expectation function and xn is a vector of associated regressor variables or independent variables for the nth case. A nonlinear model is one in which at least one of the parameters appears nonlinearly. More formally, in a nonlinear model, at least one derivative with respect to a parameter should involve that parameter. Examples of a nonlinear model are: Y(t) = exp(at+bt2) Y(t) = at + exp(-bt). Important non linear growth models 1.Logistic Model This model is represented by the differential equation dN/dt = rN (1-N/K). Integrating, we get N(t) = K / [1+(K/No-1) exp(-rt)] The graph of N(t) versus t is elongated S-shaped and the curve is symmetrical about its point of inflexion. 2.Malthus Model If N(t) denotes the population size or biomass at time t and r is the intrinsic growth rate, then the rate of growth of population size is given by dN/dt = rN. Integrating, we get N(t) = No exp (rt), where No denotes the population size at t=0. Thus this law entails an exponential increase for
  • 5. r>0. Furthermore, N(t) à as t à , which cannot happen in reality. 3. Monomolecular Model This model describes the progress of a growth situation in which it is believed that the rate of growth at any time is proportional to the resources yet to be achieved, i.e. dN/dt = r(K-N), where K is the carrying size of the system. Integrating (3.3), we get N(t) = K-(K-No) exp (-rt). 4. Richards Model. This model is given by dN/dt = rN (KN – Nm)/mKm which, on integration, gives N(t )=K N0 /[ N0+ (KN – N0m) exp (-rt)]1/m. Unlike the earlier models, this model has four parameters Hours (H) 10 20 40 50 No fo bacteria (N) 25 70 380 550 610 b) N = b H m Log10 N = logb + mLog10H (below data are tabulated in excel) xi Log10N 1 1.301
  • 7. Y = [ 25 70 380 550 610]; Hours (H) 10 20 40 50 No fo bacteria (N) 25 70 380 550 610