I want subscripted, superscripted symbols used as symbols themselves.
Subscripted : I tried this and it works, Subscript[M, 5][x_] := x^2
It doesn't work for Superscript, because it interprets as raised to the power I have both subscript and superscript
In[91]:= (M1^5)[t_] := t
During evaluation of In[91]:= SetDelayed::write: Tag Power in (M1^5)[t_] is Protected. >>
Out[91]= $Failed
If this is the case how can I use both subscript and superscript?