SageMath is a free open-source mathematics software system. You can use a SageMath cell online by going here.
xxxxxxxxxxvar("t")r=vector([t,t^2,t^3])numerical_integral( diff(r,t).norm(), 0, 1 )
xvar("t")r=vector([sin(3*t),-cos(t),t])rp=diff(r,t)rpp=diff(rp,t)cross=rp.cross_product(rpp)kappa=cross.norm()/(rp.norm())^3kappa(t=0)
xxxxxxxxxxvar("t")r=vector([sin(2*t),sin(t)*cos(2*t)])rp=diff(r,t)T=rp/rp.norm()Tp=diff(T,t)N=Tp/Tp.norm()p1=parametric_plot(r,(t,0,pi))p2=plot(T(t=pi/3), start=r(t=pi/3), color="green")p3=plot(N(t=pi/3), start=r(t=pi/3), color="red")show(p1+p2+p3)