Differntial equations & Polar Coords

  • Thread starter Thread starter Firepanda
  • Start date Start date
  • Tags Tags
    Polar
Click For Summary

Homework Help Overview

The discussion revolves around differential equations in the context of polar coordinates, specifically focusing on the behavior of a system described by the variable z in terms of its polar representation. Participants are exploring the derivation of two differential equations from a given expression and the implications of invariant sets within the system.

Discussion Character

  • Exploratory, Conceptual clarification, Mathematical reasoning, Problem interpretation, Assumption checking

Approaches and Questions Raised

  • Participants discuss the differentiation of z in polar coordinates and the application of the product rule. There are attempts to derive two ordinary differential equations (ODEs) by equating coefficients and questions about the correctness of terms in the equations. The concept of invariant sets is also raised, with inquiries about methods to determine them and the implications of uncoupled equations.

Discussion Status

The conversation is active, with participants providing guidance on separating real and imaginary parts of the equations and questioning the definitions of terms like 'invariant set.' Some participants express uncertainty about the integration process and the implications of their findings, while others suggest analyzing qualitative behaviors of solutions based on initial conditions.

Contextual Notes

There are discussions about the correctness of specific terms in the derived equations, such as whether r^2 or r^3 is appropriate. Participants also mention the need to consider the effects of parameters a and b on the system's behavior and the nature of invariant sets.

Firepanda
Messages
425
Reaction score
0
nzofmo.png


Let Q = theta

Let z=reiQ

z' = (a+ib)reiQ - z|z|2

|z|2 = r

so

z' = a*reiQ + ib*reiQ - r2eiQ

Also

z' = ireiQ

The question asks for 2 differential equations, but I really have no idea where I'm going with this..

Any help?

Thanks
 
Physics news on Phys.org
No, if z=r*exp(iQ) then z'=r'*exp(iQ)+r*i*Q'*exp(iQ). Use the product rule. Both r and Q are functions. Now try and separate into real and imaginary parts.
 
Dick said:
No, if z=r*exp(iQ) then z'=r'*exp(iQ)+r*i*Q'*exp(iQ). Use the product rule. Both r and Q are functions. Now try and separate into real and imaginary parts.

Ah ok!

Would I be right in saying my two ODE's are now

r' = ar - r2

Q' = b

by equating coefficients?

Any idea on how to find the invariant sets? Do I have to solve thiese coupled ODE's somewhow?

Thanks
 
Firepanda said:
Ah ok!

Would I be right in saying my two ODE's are now

r' = ar - r2

Q' = b

by equating coefficients?

Any idea on how to find the invariant sets? Do I have to solve thiese coupled ODE's somewhow?

Thanks

That's not quite what I get for the r'. I'm not quite sure what your definition of 'invariant set' is, but the equations are coming out to be uncoupled. So they should be pretty easy to solve.
 
Dick said:
That's not quite what I get for the r'. I'm not quite sure what your definition of 'invariant set' is, but the equations are coming out to be uncoupled. So they should be pretty easy to solve.

hmm I used

z' = a*reiQ + ib*reiQ - r2eiQ

was that not correct?

My definition of invariant set is starting at some initial condition within the set, for all t>0 then you'll still be within the set.

So since they're uncoupled

r(t) = some function with r(0) and eat (yet to work it out - messy rearranging, and you say it's incorrect)

Q(t) = bt + Q(0)

Is it a trial and error thing for invariant? I don't know any method for it.

Thanks
 
Firepanda said:
hmm I used

z' = a*reiQ + ib*reiQ - r2eiQ

was that not correct?

My definition of invariant set is starting at some initial condition within the set, for all t>0 then you'll still be within the set.

So since they're uncoupled

r(t) = some function with r(0) and eat (yet to work it out - messy rearranging, and you say it's incorrect)

Q(t) = bt + Q(0)

Is it a trial and error thing for invariant? I don't know any method for it.

Thanks

In r' = ar - r^2, I'm questioning whether the r^2 is right. Go way back to the beginning. And for the invariant set try plotting some solutions for fixed values of a and b and see what they look like.
 
Dick said:
In r' = ar - r^2, I'm questioning whether the r^2 is right. Go way back to the beginning. And for the invariant set try plotting some solutions for fixed values of a and b and see what they look like.

oh is it r^3?

Am I right in thinking I should be integrating 1/ar-r3 between r(0) and r(t)

I just did the integration but the rearrangement into r(t) looks impossible
 
Dick said:
Yes, it's r^3. r'=ar-r^3 is separable. You can integrate it with partial fractions.

Yeah and I have 1/2a (2log(r) - log(r2-a))

The problem is when I integrate between r(0) and r(t) I get an expression in the form that has an r(t)a and an r(t)2

So it seems impossible for me to get r(t) out of the expression...
 
Firepanda said:
oh is it r^3?

Am I right in thinking I should be integrating 1/ar-r3 between r(0) and r(t)

I just did the integration but the rearrangement into r(t) looks impossible

Yes, it's r^3. Solving for r doesn't look that hard to me. I'm not sure where this is going as far as the invariant sets part.
 
  • #10
If it's any help notice that solutions with an initial value r(0) that satisfies r(0)^2=a are pretty simple. Try thinking about it starting from that.
 
  • #11
Oops double post
 
Last edited:
  • #12
Perhaps I shouldn't even be trying to integrate it then.

I have the fact that

(r',Q') = M(r,Q) (both column vectors, M is a matrix)

So when r = 0 and b = 0 then the invariant set is just the point (0,0)

When r=sqrt(a) then the invariant set is the circle with radius sqrt(a), or is it not? What can I say about b?
 
  • #13
ONE of the invariant sets is the circle of radius sqrt(a), if a is positive and b is nonzero. And r=0 is an invariant set no matter what a or b is. Keep thinking along those lines.
 
  • #14
Ok this is what I have do far:

The equilibrium point, (0,0) is an invariant set. Because when r=0 r'=0, and we don't care about the angle, so b (and a) can be anything.

When r = root a, and angle Q(t) = bt + Q(0), so the angle change is linear, so this is a circle. Can I show it's an invariant set by showing this is a periodic orbit somehow?
 
  • #15
I just solved the system using Matlab with script:

vdpol.m:

function ydot=vdpol(t,y)
a=1;
b=1
ydot=[a*y(1)-y(1)^3; b];

vdpolrun.m

clear
tspan=[0 200];
y0= [0.5; 0];
[t,y]=ode45(@vdpol,tspan,y0);
polar(y(:,2),y(:,1))

And whatever initial condition I take the solution is always the periodic orbit with radius root a, how can I mathematically show this is the case for every initial condition, and hence every initial condition within the circle?

Does this mean there are infinitely many invariant sets? Since a can take any positive value?
 
  • #16
Firepanda said:
I just solved the system using Matlab with script:

vdpol.m:

function ydot=vdpol(t,y)
a=1;
b=1
ydot=[a*y(1)-y(1)^3; b];

vdpolrun.m

clear
tspan=[0 200];
y0= [0.5; 0];
[t,y]=ode45(@vdpol,tspan,y0);
polar(y(:,2),y(:,1))

And whatever initial condition I take the solution is always the periodic orbit with radius root a, how can I mathematically show this is the case for every initial condition, and hence every initial condition within the circle?

Does this mean there are infinitely many invariant sets? Since a can take any positive value?

I really don't know what that means and I'm not an expert with invariant sets. But if one of your solutions is a circle and the other is a point and you know the solutions don't cross (how?) then what can you conclude? I suggest you analyze the qualitative behavior of the solutions inside the circle and outside. And the solutions might be pretty different if b=0 or a<0.
 

Similar threads

  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
Replies
2
Views
1K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
3K
Replies
3
Views
2K
Replies
6
Views
2K
Replies
6
Views
2K