I have a simple question, but just can't figure it out.
I have the following model equation to get a peak. I want to get the the two t-values on the left and right side of the peak, where the model has a height (y-value) of 1*10^-6.
model=(1.87429 E^(-((0.982704 (30.8 - 3.35121 t)^2)/t)))/Sqrt[t]
I tried:
Solve[model == 10^-6, t]
but the result is {}.
and I get the message
Solve::ifun: Inverse functions are being used by Solve, so some solutions may not be found; use Reduce for complete solution information.
I then tried Reduce, but that also doesn't work.
The problem seems really easy, but I think I have a fundamental misunderstanding here.


model, why don't you just go for it directly?FindMaximum[model, {t, 10}]returns{0.618628, {t -> 9.16809}}. $\endgroup$