Message Boards Message Boards

0
|
7150 Views
|
3 Replies
|
3 Total Likes
View groups...
Share
Share this post:

Finding acceleration in kinematics

Posted 10 years ago

How can I find acceleration if it is assumed constant? For example: a car slows down from 29m/s to rest in a distance of 71m.

POSTED BY: Aaron Phillips
3 Replies

Physics problems should be solved from first principles

In[8]:= xsoln[t_] = 
 DSolveValue[{x''[t] == -a, x'[0] == 29, x[0] == 0}, x[t], t]

Out[8]= 1/2 (58 t - a t^2)

In[10]:= Solve[{xsoln[tf] == 71, xsoln'[tf] == 0}, {a, tf}]

Out[10]= {{a -> 841/142, tf -> 142/29}}

In[11]:= N[%]

Out[11]= {{a -> 5.92254, tf -> 4.89655}}
POSTED BY: Frank Kampas
Posted 10 years ago

You can also go to Wolframalpha and enter

reduce 29 = a*t & 71 = a/2*t^2

or feed Mathematica with

r = Reduce[29 == a*t && 71 == a/2*t^2]
N@r[[1]]
N@r[[2]]

This might be a more comprehensible way.

POSTED BY: Simon Tyran
POSTED BY: Nasser M. Abbasi

Group Abstract Group Abstract