I have several product states, represented by a string of variables - for example, "ABC". I'd like to multiply this state by a constant, call it J, to which I don't want to pre-assign a value. Using J * "ABC" as my input, the output returns: ABC J. How do I get Mathematica to display the output as J ABC instead?
Thanks a lot! :)
ToString@Unevaluated[J *"ABC" ], maybe – user1066 Mar 21 '16 at 12:25