Hello Jim,
Do you think it could be worthwhile reposting the question as shown below?
Input:
a = InverseCDF[NormalDistribution[0, 1], 0.95];
f[n, cl] := InverseCDF[NoncentralStudentTDistribution[n - 1, Sqrt[n]*a], cl]
fInv[n, k] := CDF[NoncentralStudentTDistribution[n - 1, Sqrt[n]*a], k]
Column[(AbsoluteTiming[{#, fInv[#, f[#, 0.95]]}] &) /@ Range[415, 420]]
Output:
{{{172.416517, {415, 0.95}}},
{{263.043509, {416, 0.95}}},
{{171.102316, {417, 0.95}}},
{{265.421146, {418, 0.95}}},
{{59.659498, {419, 0.50088}}},
{{93.751030, {420, 0.50338}}}}
The last column should be 0.95 all the time, the last two numbers are wrong. No warnings are printed. Too bad I do not know how to paste Mathematica code here more neatly.
Thanks, OL.