General::dupv
Examples
Basic Examples (2)
The same symbol is used in both of the range specifications in this input to NDSolve:
NDSolve[{Derivative[2, 0][f][x, t] == Derivative[0, 1][f][x, t], f[0, t] == 0, f[1, t] == 1, f[x, 0] == x ^ 2}, f, {x, 0, 1}, {x, 0, 1}]This shows valid input to NDSolve:
NDSolve[{Derivative[2, 0][f][x, t] == Derivative[0, 1][f][x, t], f[0, t] == 0, f[1, t] == 1, f[x, 0] == x ^ 2}, f, {x, 0, 1}, {t, 0, 1}]The same symbol is used for both variables of integration:
NIntegrate[x y, {x, 0, 1}, {x, 0, 1}]This shows valid variable specifications in NIntegrate:
NIntegrate[x y, {x, 0, 1}, {y, 0, 1}]