Here is my simple code:
A[X_] := a*X^2 - b/a^2* X^3;
B[X] = A[X]^2;
Manipulate[Plot[B[X], {X, 0, 10}], {a, 1, 3}, {b, 0, 2}]
After running the cell I get a frame of a plot with two sliders for a and b, but no graph. I know If I replace B[X] with (aX^2 - b/a^2 X^3)^2 in the Manipulate[Plot[..., it'll work. However without this replacement, I'm wondering if this is a limitation of Manipulate or I'm not doing something right.
