Critical points for system of 3 first order differential equations

조회 수: 5 (최근 30일)
spcrooks
spcrooks 2018년 12월 2일
댓글: spcrooks 2018년 12월 8일
Hi all,
I am trying to solve a system of non-linear ODE's for the critical points. I then need to determine the stability of the points.
My system is as follows:
u'1 = u1 + 4*u2 - u1*u2
u2' = 9*u1 + 4*u2 - u2*u3
u3' = 2*u1^2 + 9*u2^2 -89
It was recommended to me to try Newton's method to find the critical points...but I am unsure how to do so for 3 equations.
The methods that I have learned up until this point won't work, considering the unknowns. I'm not asking for a solution...simply a nudge in the right direction.
Thank you

채택된 답변

John D'Errico
John D'Errico 2018년 12월 2일
편집: John D'Errico 2018년 12월 2일
What would you define a critical point to be? Perhaps one where u'1=u'2=u'3=0?
How would you identify that set of points? Perhaps as solutions to the corresponding nonlinear system? It would seem the derivatives go away there. ;-)
Can Newton's method be applied to such a problem? Hint: do some reading about Newton-Raphson.
  댓글 수: 6
spcrooks
spcrooks 2018년 12월 8일
Thanks, John. Fair enough...no the system won't pass through a point with a non-zero imaginary comp. In that case the critical points are apparent.
Ok...so now if I want to determine the stability of these points...I determine the Jacobian matrix:
>> syms u1 u2 u3
jacobian([u1 + 4*u2 - u1*u2, 9*u1 + 4*u2 - u2*u3, 2*u1^2 + 9*u2^2 -89], [u1, u2, u3])
ans =
[ 1 - u2, 4 - u1, 0]
[ 9, 4 - u3, -u2]
[ 4*u1, 18*u2, 0]
[ 0, 0, 0]
So now all I would need to do is figure out the code for evaluating it at my critical points?
spcrooks
spcrooks 2018년 12월 8일
Thanks for all your help, John. I appreciate it.
Sean

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Equation Solving에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by