I will use this MSE post as a guide.
We are asked to find the value of $x$ (changed $a$ to $x$ so I can reuse post details) where:
$$ \int_{0}^{x} \sqrt{0.158\sin^2t +0.307} dt= 1$$
We need two numerical approaches here. One to find the zeros of the function $f(t)$, Newton's Method, and one to estimate the integral, Composite Simpson and Composite Trapezoidal, above where:
$$f(x) = \int_{0}^{x} \sqrt{0.158\sin^2t +0.307} dt - 1 = 0$$
The derivative wrt $x$ of this function is
$$f'(x) = \sqrt{0.158\sin^2x +0.307}$$
The Newton-Raphson method is given by:
$$\displaystyle x_{n+1} = x_n - \dfrac{f(x_n)}{f'(x_n)} = x_n - \dfrac{\displaystyle \int_{0}^{x_n} \sqrt{0.158\sin^2t +0.307}~ dt - 1} {\sqrt{0.158\sin^2x_n +0.307}}$$
At each iteration, we have to use the Composite Simpson's Rule to find the value of that integral for the next $x_n$.
$$s = \int_a^b f(x) \approx \dfrac{h}{3} \left( f(a) + f(b) + 4 \sum_{i=1}^{n/2}~f(a + (2i - 1)h)+2 \sum_{i=1}^{(n-2)/2} f(a+2 ih) \right)$$
The initial starting point is $x_0 = 0.5$ with a desired accuracy of $10^{-5}$.
The iterations are:
$x_0 = 0.5$
Using Composite Simpson, with $n=4$: $s$ evaluated between $(0, 0.5)$ gives $s = 0.28259$
Using Newton's iteration: $x_1 = x_0 - \dfrac{f(x_0)}{f'(x_0)} = 0.5 - \dfrac{0.28259 - 1}{0.585932} = 1.72439$
$s$ evaluated between $(0, 1.72439)$ gives $s = ...$
$x_2 = ...$
$s = ...$
$x_3 = ...$
$s = ...$
Please fill in the details
Final result is $x_n = 1.6098987602286736$
This means $$a = 1.6098987602286736$$
It is easy to verify that that value satisfies your integral relation using Wolfram Alpha.
Repeat this exact same procedure using the Composite Trapezoidal Rule for calculating the values of $s$ to make sure you understand.
Update
We can find a non-elementary solution to the integral as (where E is the complete elliptic integral)
$$\frac{1}{10} \sqrt{\frac{307}{10}} \left(2 E\left(-\frac{158}{307}\right) \text{IntegerPart}\left[\frac{a}{\pi }\right]+E\left(\pi~~ \text{FractionalPart}\left(\frac{a}{\pi }\right)|-\frac{158}{307}\right)\right)$$
I was hoping to be able to use a numerical method to find the root, but do not see how.
I then used Mathematica's FindInstance command on the "closed-form" solution to find $$a = 1.60989876022843878114724442347$$