DSolve::derlen
NDSolve::derlen
NDSolveValue::derlen
ParametricNDSolve::derlen
ParametricNDSolveValue::derlen
Three variables are specified in the third argument, suggesting that the input may represent a partial differential equation:
DSolve[{f'[x] == f[x], f[1] == 1}, f, {x, y, z}]Avoid the error message by specifying only x in the third argument:
DSolve[{f'[x] == f[x], f[1] == 1}, f, {x}]