Find the curvature and components of acceleration of a particle if the following describes its position at time t:
- X(t) = sin(t)
- Y(t) = t · cos(t)
- Z(t) = 31/2 · t
Boooring. You could have at least chosen a difficult question.

Let me open up my Calculus III notes and I'll solve it in a second:
r(t) = <sin(t), t*cos(t), sqrt(3)*t>
r'(t) = <cos(t), cos(t) - t*sin(t), sqrt(3)>
r''(t) = <-sin(t), -2sin(t) - t*cos(t), 0>
And since a
T = r'.r''/|r'|, we compute r'.r'' and |r'| for further use:
r'.r'' = -sin(t)cos(t) + [cos(t) - t*sin(t)]*[-2sin(t) - t*cos(t)]
|r'| = sqrt(cos
2(t) + [cos(t) - t*sin(t)]
2 + 3)
Then:
a
T = (-sin(t)cos(t) + [cos(t) - t*sin(t)]*[-2sin(t) - t*cos(t)])/sqrt(cos
2(t) + [cos(t) - t*sin(t)]
2 + 3)
Screw simplification because the components you gave suck.
Anyway, continuing, a
N = |r' x r''|/|r'| so we need the r' x r'' vector. For that, I'll use a 3x3 determinant of the following matrix:
A = [i, j, k; cos(t), cos(t) - t*sin(t), sqrt(3); -sin(t), -2sin(t) - t*cos(t), 0]
det(A) = i*sqrt(3)*[2sin(t) + t*cos(t)] - j*sqrt(3)*sin(t) + k*[-cos(t)*(2sin(t) + t*cos(t)) + sin(t)*(cos(t) - t*sin(t))]
and so:
r' x r'' = <sqrt(3)*[2sin(t) + t*cos(t)], sqrt(3)*sin(t), -cos(t)*(2sin(t) + t*cos(t)) + sin(t)*(cos(t) - t*sin(t))>
|r' x r''| = sqrt(3*[2sin(t) + t*cos(t)]
2 + 3*sin
2(t) + (-cos(t)*(2sin(t) + t*cos(t)) + sin(t)*(cos(t) - t*sin(t)))
2)
Then:
a
N = sqrt(3*[2sin(t) + t*cos(t)]
2 + 3*sin
2(t) + (-cos(t)*(2sin(t) + t*cos(t)) + sin(t)*(cos(t) - t*sin(t)))
2)/sqrt(cos
2(t) + [cos(t) - t*sin(t)]
2 + 3)
And finally, K = |r' x r''|/|r'|
3
K = sqrt(3*[2sin(t) + t*cos(t)]
2 + 3*sin
2(t) + (-cos(t)*(2sin(t) + t*cos(t)) + sin(t)*(cos(t) - t*sin(t)))
2)/sqrt(3*[2sin(t) + t*cos(t)]
2 + 3*sin
2(t) + (-cos(t)*(2sin(t) + t*cos(t)) + sin(t)*(cos(t) - t*sin(t)))
2)/sqrt(cos
2(t) + [cos(t) - t*sin(t)]
2 + 3)
3
Either I made a mistake somewhere in there, or you really gave horrible functions to start with.
Anyway, participated in a math competition yesterday, and I think I did fairly well. Here's one of the questions that I'm pretty sure I got right. Anyone who gets it wins a cookie!
A piece of software generates random numbers between 0 and 1. It is designed so that for every x between 0 and 1, the probability that it will generate a number smaller than x is three times the probability that it will generate a number smaller than x/4. Moreover, the probability that it will generate a number higher than or equal to x is the same as the probability that it will generate a number smaller than 1 - x. Calculate the probability that this program will generate a number smaller than 1/21.