0

Let $a>0$. I want to solve the following equation: $$x^2 -2x +\sqrt{1-x^2} -\left(\frac{1}{a^2}+1\right) = 0.$$

I did a plot of the function on Matlab and I see that for $a=1,2,2000,...$ etc, and I see that the function has always a solution over $[-1,1]$.

I tried the following variable change: $u= \sqrt{1-x^2}$ however, it did not work (because we obtain the same equation).

hanava331
  • 169

2 Answers2

1

Let $c= 1+ \frac{1}{a^2}$ then your equation can be written as $$x^2-2x-c= -\sqrt{1-x^2}$$ By squaring both sides we get $$ x^4 - 4 x^3 - 2 c x^2 + 5 x^2 + 4 c x + c^2 - 1=0$$ which is a quartic equation and here you can see how to solve them.

To determine if the roots are real use the properties of discriminant $Δ = 256 c^4 - 128 c^3 - 1520 c^2 - 1536 c - 848$.

0

Let $X=x-1$ and $b=2+\frac1{a^2}$, solve the quartic equation (in $[-2,0]$) $$X^4+(1-2b)X^2+2X+b^2=0.$$

Anne Bauval
  • 49,005