Tenenbaum & Pollard Pages 53-54: Apparently does not make sense

  • Thread starter Thread starter xorg
  • Start date Start date
xorg
Messages
15
Reaction score
0
Hi. I'm reading the bookhttp://amzn.com/0486649407 ,
S7ShG10.jpg

in self-study mode.
In page 53 and 54, below:
voXXhL8.jpg

Apparently does not make sense, because, If the differential equation is:
$$ \frac{\mathrm{d}y }{\mathrm{d} x} = x\frac{\sqrt{1-y}}{\sqrt{1-x^{2}}} $$

then dy/dx = ∞ when x = 1, and y < 0
however, in Image:
Ifx1MI0.png

dy / dx is not ∞ in point marked in green.

Then, in this point, the graph changes radically the slope? Apparent, does not make sense, It seems that the correct curve would go up until tangent to x = 1, while the particular solution says otherwise.

Why the differential equation "fails", and the solution of the differential equation not? I did not catch that.

I am studying alone, thank you for your patience.
 
Last edited by a moderator:
Physics news on Phys.org
There is some gap in your knowledge about what it means for a graph to have a derivative. I would advice you read a calculus book and brush up on it. This idea is a very fundamental key point in ode.
 
To clarify the question: Why does the graph show a solution curve that is not asymptotic to the vertical line x = 1 ?

xorg said:
Apparently does not make sense, because, If the differential equation is:
$$ \frac{\mathrm{d}y }{\mathrm{d} x} = x\frac{\sqrt{1-y}}{\sqrt{1-x^{2}}} $$

then dy/dx = ∞ when x = 1, and y < 0

Did you mean "when y &lt; 1 ?

however, in Image:
Ifx1MI0.png

dy / dx is not ∞ in point marked in green.
 
Stephen Tashi said:
To clarify the question: Why does the graph show a solution curve that is not asymptotic to the vertical line x = 1 ?

Yes, if the dy/dx go to ∞ when x go to 1, then i guess in particular solution this should be the trend.
It is as if the particular solution and differential equation were conflicting.
Imagine that someone will draw the solution curves, from the dy / dx, at each point, does not match the presented solution.
However, the method of solution seems correct, that leaves me confused!

Did you mean "when y &lt; 1 ?

YES, when y<1. Sorry.
 
xorg said:
Yes, if the dy/dx go to ∞ when x go to 1, then i guess in particular solution this should be the trend.
It is as if the particular solution and differential equation were conflicting.
Imagine that someone will draw the solution curves, from the dy / dx, at each point, does not match the presented solution.
However, the method of solution seems correct, that leaves me confused!
YES, when y<1. Sorry.

You are correct: the illustration is erroneous. The solution is correct, however. If you plot the family of solutions, you will get curves with vertical tangent lines x = 1 and x = -1 when y < 1, as described by the text.
In particular, if you isolate y in the family of solutions, you will get y = \frac{1}{4}x^2 + C\sqrt{1-x^2} + \frac{3}{4} - C^2, from which you can find the explicit derivative. You can see that it is only when C = 0 that the problematic derivative of the square root at x = 1, and at x = -1, disappears.
 

Attachments

  • Contours.png
    Contours.png
    12.3 KB · Views: 474
Last edited:
  • Like
Likes xorg
slider142 said:
You are correct: the illustration is erroneous. The solution is correct, however. If you plot the family of solutions, you will get curves with vertical tangent lines x = 1 and x = -1 when y < 1, as described by the text.
In particular, if you isolate y in the family of solutions, you will get y = \frac{1}{4}x^2 + C\sqrt{1-x^2} + \frac{3}{4} - C^2, from which you can find the explicit derivative. You can see that it is only when C = 0 that the problematic derivative of the square root at x = 1, and at x = -1, disappears.

Thank You!

The solution:
$$ \sqrt{1-x^{2}} - 2\sqrt{1-y} = C $$
Results:
$$ y = \frac{3}{4} + \frac{x^{2}}{4} + \frac{C\sqrt{1-x^{2}}}{2} - \frac{C^{2}}{4} $$
(in your solution, yourC = C/2)

Matlab Code
PHP:
x = linspace(-1,1,1000);
clf;
grid on;
hold on;
c=0;
y=3/4+(x.^2)/4 +(c/2)*sqrt(1-(x.^2))-(c/2)^2;plot(x, y, 'r');
c=-0.5;
y=3/4+(x.^2)/4 +(c/2)*sqrt(1-(x.^2))-(c/2)^2;plot(x, y, 'b');
c=-1;
y=3/4+(x.^2)/4 +(c/2)*sqrt(1-(x.^2))-(c/2)^2;plot(x, y, 'g');

Matlab Result
CqzeJeY.png


c = 0

c = -0.5
c = -1


Thank you, Helped me a lot!
 
Thread 'Direction Fields and Isoclines'
I sketched the isoclines for $$ m=-1,0,1,2 $$. Since both $$ \frac{dy}{dx} $$ and $$ D_{y} \frac{dy}{dx} $$ are continuous on the square region R defined by $$ -4\leq x \leq 4, -4 \leq y \leq 4 $$ the existence and uniqueness theorem guarantees that if we pick a point in the interior that lies on an isocline there will be a unique differentiable function (solution) passing through that point. I understand that a solution exists but I unsure how to actually sketch it. For example, consider a...
Back
Top