0

Consider the following initial value problem $$y’=x^2+y^2, y(0)=1$$

Which of the following statements is/ are

$1.$ there exist a unique solution in $[0,\frac{\pi}{4}]$.

$2.$ every solution is bounded on $[0,\frac{\pi}{4}]$.

$3.$ The solution has a singularity at some point in $[0,1]$.

$4.$ The solution because unbounded at some sub interval of $[\frac{\pi}{4}, 1]$.

I tried to find interval for unique solution by using existence and uniqueness theorem as

For $$|x|\leq a$$ $$|y-1|\leq b$$ we have

$$|f(x,y)|=|x^2+y^2|\leq a^2+(1+b^2)$$ $$h=min\{a,\frac{b}{M}\}=min\{a,\frac{b}{1+a^2 +b^2+2ab}\}$$ Now to find maximum of $$g(b)= \frac{b}{1+a^2 +b^2+2ab}$$ we have $$g’(b)= \frac{1+a^2-b^2}{(1+a^2 +b^2+2ab)^2}=0\iff b=\pm\sqrt{1+a^2}$$ So $$h=min\{ a,\frac{\sqrt{1+a^2}}{2+2a^2+2a\sqrt{1+a^2}}\}$$ $$a= \frac{\sqrt{1+a^2}}{2+2a^2+2a\sqrt{1+a^2}}$$ gives $$ 2a(1+a^2)=(1-2a^2)\sqrt{1+a^2}$$ $$a=\frac{1}{2\sqrt{2}}$$ Now it seems no conclusions. If it is unique( that I don’t know how ) in $[0,\frac{\pi}{4}]$ then it will be bounded also in this interval as continuous functions are bounded on compact set and if solution can’t be extended to $[0,1]$ then it is because of unboundedness of solution as I guess . I don’t know how to handle last two portions. Please help. Thanks.

neelkanth
  • 6,550

2 Answers2

1

Clearly the equation has a unique solution since $f(x,y)$ is locally Lipschitz. Since $y'\ge0$ for all $x\ge0$, we have $y\ge1$. Note $$ y'=x^2+y^2\ge y^2 $$ and hence $$ \frac{y'}{y^2}\ge1. $$ Integrating both sides from $0$ to $x$ gives $$ -\frac1{y(x)}+1>x $$ or $$ y(x)>\frac{1}{1-x}, x\in[0,1). \tag1$$ Similarly for $x\in[0,\frac{\pi}{4}]$, we have $$ y'=x^2+y^2\le (\frac\pi4)^2+y^2 $$ or $$ \frac{y'}{(\frac\pi4)^2+y^2}\le 1. $$ Integrating both sides from $0$ to $x$ gives $$ \frac{4}{\pi}\arctan(\frac{4}{\pi}y(x))-\frac{4}{\pi}\arctan(\frac{4}{\pi}y(0))\le x $$ or $$ y(x)\le\frac{\pi}4\tan(x+\frac{4}{\pi}\arctan(\frac{4}{\pi})). \tag2$$ Note that (2) holds only for $x\in[0,\frac{\pi}{4}]$. We can Combining (1) and (2) gives, for $x\in[0,\frac{\pi}4]$, $$ \frac1{1-x}< y(x)\le\frac{\pi}4\tan(x+\frac{4}{\pi}\arctan(\frac{4}{\pi})). $$ Thus (1), (2), and (3), and (4) are true.

xpaul
  • 47,821
1

As you found out, this is a duplicate of checking uniqueness and boundedness of an initial value problem.

As to your solution attempt, the minimum in the determination of $h$ from the "butterfly" condition is just the minimum of two numbers, not of a function. Thus $$ M=a^2+(1+b)^2 $$ gives besides $h\le a$ the condition $h\le \frac{b}{a^2+(1+b)^2}$. You can see that you made some transcription errors up to this point.

Next you want to ensure contractivity of the Picard iteration, to that end determine the Lipschitz constant $L=\max2|y|=2(1+b)$. Contractivity is ensured as long as $Lh<1$.

If you try out values for $a,b$ like $a=b=1$, you will find rather small admissible values for $h$, thus this approach is not very suited for this task.

Lutz Lehmann
  • 131,652