I am trying to find the solution to the differential equation $y''+3e^{3x}=0$ given boundary conditions $y(0)=0$ and $y(1)=-1$.
I am supposed to use the bisection method to find the root and the shooting method to solve. However... Since it is an exponential function, it doesn't have a root.
Is there something I'm misunderstanding here, mathematically?
From
$y''(x)=-3 \exp(3x)$ we get $y'(x)=- \exp(3x)+c_1$, hence
$$y(x)= - \frac{1}{3} \exp(3x)+c_1x+c_2.$$
Now use $y(0)=0$ and $y(1)=-1$ to determine $c_1$ and $c_2$.