NDSolve::precw
NDSolveValue::precw
ParametricNDSolve::precw
ParametricNDSolveValue::precw
An error is generated because the precision of the machine number in the equations is less than the value of the WorkingPrecision option:
NDSolve[{f'[x] == 1.3 f[x], f[1] == 1}, f, {x, 1, 2}, WorkingPrecision -> 50]A high-precision result can be computed if the low-precision number in the input is replaced by an exact number:
NDSolve[{f'[x] == (13 / 10) f[x], f[1] == 1}, f, {x, 1, 2}, WorkingPrecision -> 50, PrecisionGoal -> 30]