Part of my first year university degree, I need to work with the Maple software.
I have this question.
Find an approximation to the smallest positive solution to
$$(-38/25)*sin(9/10*x)=(13/25)*exp(-16*x/25)$$
Correct to 10 sig.figs
No matter what I do, I don't seem to get the correct answer.
Initially, I got a negative answer but then I sent the bound of x from 0 to infinity. Still getting the wrong answer.
This is my best attempt so far.
fsolve((-38/25)*sin(9/10*x)=(13/25)*exp(-16*x/25),x,x=0..infinity);
10.47244230
All help is greatly appreciated

x=0..infinitythere are an infinite number of intersections, not just 2. Also, the given plot (or a plot of the difference) shows that the roots ofexpr1-expr2are close to the roots ofexpr1. And it turns out that using a root ofexpr1as an initial-point forfsolvewill allow it to find the corresponding close root ofexpr1-expr2. But we know the roots ofexpr1, which arek*10/9*Pi, k=1,2,.... And indeed callingfsolve(expr1-expr2,x=10/9*Pi);returns the desired first point of intersection. – acer Jul 11 '19 at 19:55