Determine analytically the parametric velocity speed tangent
     Determine analytically the (parametric) velocity, speed, tangent, normal acceleration, and curvature as functions of parameter t for the following parametric representation of a space curve:  p(t) =[t t^2/2 t^3/3]  Compute the values of all these functions at the point defined by parameter value t = 0.5. Remember that speed is the magnitude of the velocity vector.  Can you analytically determine the binormal and principal normal vectors? int main() {     int n, i, range;      printf(\"Enter an integer: \");     scanf(\"%d\",&n);      printf(\"Enter the range: \");     scanf(\"%d\", &range);      for(i=1; i <= range; ++i)     {         printf(\"%d * %d = %d \ \", n, i, n*i);     }      return 0; }  
 
   
  Solution
#include
