I defined the derivative of a function in Mathematica without defining the function itself, i.e. I have a function definition that looks like this:
y'[x_] := constant * f'[x].
I can't figure out how to clear it out. If I use Clear[y']
or `ClearAll[y'], I get an error message:
ClearAll::ssym: y'
is not a symbol or a string.
Clear[y]
and ClearAll[y]
do nothing to remove the definition of y'
.
Any ideas on how I can remove the definition of y'
?