I have an equation:
$$\operatorname{sinc}(x) = \frac{\sin(x)}{x} = 0.5$$
How do I find $x$ from this?
I realise there's probably not a simple equation to describe the inverse, but is there a numerical method I can use to solve this?
I have an equation:
$$\operatorname{sinc}(x) = \frac{\sin(x)}{x} = 0.5$$
How do I find $x$ from this?
I realise there's probably not a simple equation to describe the inverse, but is there a numerical method I can use to solve this?
We cannot find a closed form for this, so you are right, numerical methods are needed.
We can use any root finding approach.
For Fixed Point Iteration, we have:
$$x = 2 \sin x$$
This leads to this root found using WA
We can also use Newton's Method with (converges in 4-steps for a start value of 2. ):
$$f(x) = 2 \sin x - x$$
Here are the same results using WA.
The root is:
$$x = \pm ~1.895494267033981\ldots$$