I was trying to make a sine wave function that is tilted, just like this:
I'm new to this community and I can't add images yet so here's the link
I found that there are plenty of similar functions, that use tangent, or are a series of "recursive" functions, and many many others. Most of them are easy to plot, except $y=sin(x+y)$, which has y in both left and right side. I didn't find any explanation how to plot this function or others similar to this. My trigonometry skills didn't help either. I wasn't able to come to anything close to form like $y=$ $(some$ $expression$ $witn$ $x$ $only)$. I need this formula for my C++ program.
But strangely enough Desmos is able to plot $y=sin(x+y)$ function or others where $y$ is present on both sides and used in functions like $sin()$. I'm okay with "recursive" one, which is $y=sin(x+ksin(x+ksin(...)))$, where $k$ is skew factor (because I don't want very much of skew). But I'm just curios about those kind of functions and their plots.
So, how does Desmos plot those functions? How do I plot one, say on paper or using programming skills?
P. S. I don't need a similar function, I need to plot exactly $y=sin(x+y)$.
EDIT: It would be better to have $y=$ $(some$ $expression$ $witn$ $x$ $only)$ form of function, if it's somehow possible. I don't think it's possible but who knows...
u=0;v=sin(x)then loop doingu=sin(x+v); v=sin(x+u)a few times and finally use the average of u and v. – Somos May 29 '22 at 02:13u=sin(x+u)iteration converges to the exact value in the limit, but I noticed that it alternately is greater and less than the limit, so I used the average of two consecutive values which is much closer to the limit. – Somos May 31 '22 at 00:35