I am reading a paper on High Harmonics Generation (HHG) and a Lewenstein model The paper is here. I would like to reproduce some results but I am stuck at the following problem. I have: $$p(\tau_b,\tau)=\frac{e}{\tau-\tau_b}\int_{\tau_b}^\tau {\rm d}\tau^{'} A(\tau^{'})\,,$$ where $A(\tau)$ is vector potential (given).
The time of birth $t_b$ as a function of $\tau$ is determined by solution of the algebraic equation: $$p(\tau_b,\tau)-e \, A(\tau_b)=0$$
How should I approach solving such an equation. I was thinking:
A[t_] := -Sin[t];
τ = 0.5;
FindRoot[NIntegrate[A[t], {t, τb, τ}]/(τ - τb) -
A[τb] == 0, {τb, 1}]
But Mathematica keeps saying
t = τb is not a valid limit of integration
Maybe there is an error in my solution. But besides making it work with Mathematica specific approach, what would a more general numerical approach be for such a solution?
Thank you.
A[t_] := -Sin[t]; k[s_?NumericQ] := NIntegrate[A[t], {t, s, tau}]; tau = 0.5; FindRoot[k[tb]/(tau - tb) - A[tb] == 0, {tb, 1}]– Dr. belisarius Dec 14 '15 at 21:24Out[28]= {[Tau]b -> 0.5}`
– Daniel Lichtblau Dec 14 '15 at 21:26Ais known this is not an integral equation. – george2079 Dec 14 '15 at 21:45