Question: Is there a way to do this? [probably a bug]

From an exercise in "Game Physics", we have the following piecewise position vector r. We wish to show that it is well-defined (as well as twice differentiable) at 0. The goal of the exercise is then to show that the Normal vector is not even continuous. So we try: p1,p2 := <t,t^3,0>, <t,0,t^3>; r := piecewise( t<0, p1, p2); limit(r,t=0,left); and unfortunately that limit gives RTABLE(149559852,MATRIX([[t], [t^3], [0]]),Vector[column]) as a result! The obvious thing to try next is to "push in" the piecewise into the components. But the above seems to show a bug, no?
Please Wait...