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 clean it. If I use Clear[y'] or `ClearAll [y'], I get an error message:
ClearAll::ssym: y' not a character or 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' ?
source share