I want to make function a[t] a continuous which has indeterminate form at some points.
tT = 0.0042643923240938165;
y[t_] := (1625.0688606154426*Cos[1473.4069545336129*t]*Cos[0.9403762801519631*Tanh[2.4*Sin[1.2636183784438946 + 1473.4069545336129*t]]])/
Sqrt[1 - 0.48999999999999994*Sin[1473.4069545336129*t]^2];
z[t_] := -((1625.0688606154426*Cos[1473.4069545336129*t]*Sin[0.9403762801519631*Tanh[2.4*Sin[1.2636183784438946 + 1473.4069545336129*t]]])/
Sqrt[1 - 0.48999999999999994*Sin[1473.4069545336129*t]^2]);
NSolve[{y[t] == 0, z[t] == 0}, t]
a[t_] = If[y[t] == 0 && z[t] == 0, 0, Sin[2*ArcTan[y[t], z[t]]]];
Plot[a[t], {t, 0, tT}, ImageSize -> Large]
At some point t=0.0010661 both y[t] and z[t] becomes zero. So i gave If condition when ever y[t] and z[t] both are zero take the value to be zero. It is not working.
Any suggestion how to make this function continuous. Thank you.


Exclusions->Nonehelps. Related: https://mathematica.stackexchange.com/a/143728/1871 – xzczd Nov 29 '19 at 09:48