Writing a program to define a user key assignment works in CAS for me, but does not seem to work in RPN/Home mode. If I write:
KEY K_Sq(A,B,C)
BEGIN
RETURN {(-B+(B*B-4*A*C)^0.5)/(2*A),(-B-(B*B-4*A*C)^0.5)/(2*A)};
END;
the program works as expected in CAS, but putting 3 numbers on the stack in Home/RPN and doing 1U +/- does not run the app but just negates the level 1 item.
Ideas? Or is this a limitation of RPN mode?
Thanks for the discussion and comments.