I was thinking for a while what we can achieve by creating new functions with infinite expressions. The FIRST expression I couldn't handle is: $$ y= \sin(x+y)$$ I thought about deriving this expression many times and trying to do a Taylor Series on $x=t-\sin(t), t \ \in [0,\pi]$, and I thought about Newton's Method, since we can solve for $x$ and solve for an inverse function: $$\sin^{-1}(y)=x+y$$ $$x=-y+\sin^{-1}(y)$$ $$y=f(x)$$ Does anyone have a method to solve this problem? For which function is the condition real? I'd be grateful if anyone could help me.
MY TRY:
$$\frac{dy}{dx}=\cos(x+y)(1+\frac{dy}{dx})=\frac{\cos(x+y)}{1-\cos(x+y)}$$ $$\frac{d^2 y}{dx^2}=-y(1+\frac{dy}{dx})^2+\cos(x+y)\frac{d^2y}{dx^2}=\frac{-y(1+\frac{dy}{dx})^2}{1-\cos(x+y)}$$ Set $y=\sum_{n=0}^\infty a_n(x-\pi)^n$, then we have that $\frac{d^ny}{dx^n}|_{x=\pi}=n!a_n$. So: $$y|_{x=\pi}=a_0=\sin(a_0+\pi) \Rightarrow a_0=0, \cos(a_0+\pi)=-1$$ $$ \frac{dy}{dx}|_{x=\pi}=a_1=-1-a_1\Rightarrow a_1=-\frac{1}{2}$$ $$\frac{d^2y}{dx^2}|_{x=\pi}=2a_2=-a_0(1+a_1)^2-a_2=-a_2\Rightarrow a_2=0$$ So: $$y \approx -\frac{1}{2}(x-\pi) \forall x \approx \pi$$
MY 2nd TRY:
So, deriving the function many times, I saw that in the denominator of the derivatives was the expression $1-\cos(x+y)$. Then, I tried to derive $y'(1-\cos(x+y))=\cos(x+y)$ to reach at the expression: $$y^{(n)}(1-\cos(x+y))=\frac{d^{n-1}}{dx^{n-1}}(\cos(x+y))-\sum_{m=0}^{n-1} \frac{d^m}{dx^m}(y*y^{n-1-m} (1+y'))$$ and, if $y=\sum_{n=0}^\infty a_n(x-x_0)^n$, so: $$\frac{n!a_n}{1+a_1}=[\frac{d^{n-1}}{dx^{n-1}}(\frac{y'}{1+y'})-\sum_{m=0}^{n-1} \frac{d^m}{dx^m}(y*y^{n-1-m} (1+y')]_{x=x_0}$$ since $y^{(n)}|_{x=x_0}=n!a_n$ and $\cos(x+y)|_{x=x_0}=\frac{y'}{y'+1}|_{x=x_0}=\frac{a_1}{1+a_1}$.
So, for example, pick $x_0=\pi$. So:
$$a_0=\sin(\pi+a_0)=0$$ $$a_1=\frac{\cos(\pi+a_0)}{1-\cos(\pi+a_0)}=-\frac{1}{2}$$ $$a_2=0$$ $$a_3=\frac{1}{96}$$
So: $$y=-\frac{1}{2}(x-\pi)+\frac{1}{96}(x-\pi)^2+...$$