Substitution in Differential Equations

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 9K views
rgalvan2
Messages
26
Reaction score
0
Make an appropriate substitution to find a solution of the equation dy/dx=sin(x-y). Does this general solution contain the linear solution y(x)=x-pi/2 that is readily verified by substitution in the differential equation?

Here's what I did:
v=x-y
y=x-v
y'=1-dv/dx

1-dv/dx=sin(v)
1-sin(v)=dv/dx
dx=dv/(1-sin(v))
x=2/(cot(v/2)-1)

The solution in the back of the book gives:
x=tan(x-y) + sec(x-y)

What am I doing wrong?
Any help is greatly appreciated.
Thanks!
 
Physics news on Phys.org
f =

1/(1-sin(x))


>> int(f,x)

ans =

-2/(tan(1/2*x)-1)

I have something different from MATLAB when I integrate 1/(1-sin(x))
 
rgalvan2 said:
Make an appropriate substitution to find a solution of the equation dy/dx=sin(x-y). Does this general solution contain the linear solution y(x)=x-pi/2 that is readily verified by substitution in the differential equation?

Here's what I did:
v=x-y
y=x-v
y'=1-dv/dx

1-dv/dx=sin(v)
1-sin(v)=dv/dx
dx=dv/(1-sin(v))
Everything is fine to here, but goes downhill after that.
The integral on the right isn't too bad.

[tex]\int \frac{dv}{1 - sin(v)}[/tex]
[tex]= \int \frac{dv}{1 - sin(v)} * \frac{1 + sin(v)}{1 + sin(v)}[/tex]
[tex]=\int \frac{(1 + sin(v))dv}{1 - sin^2(v)}[/tex]

The denominator simplifies to cos^2(v) and you can split the integral into two integrals, one of which is straightforward. The other one requires only an ordinary substitution.

I ended with the same answer as in the book.

rgalvan2 said:
x=2/(cot(v/2)-1)

The solution in the back of the book gives:
x=tan(x-y) + sec(x-y)

What am I doing wrong?
Any help is greatly appreciated.
Thanks!