How to solve physics problems-Ex1
Physics/Engineering Problem solver!
Basic List: Method to solving Physics Problems
The list of steps:
Say this prayer: it helps!
* State/Identify the problem
Our problem consists of solving for the final velocity of a moving vehicle with a given acceleration:
A car is initially moving with a speed of vi= 30 m/s. It also has an acceleration of
a = 3.4 m/s/s or 3.4 m/s^2 (3.4 meters per second squared). If it rolls for t = 20 seconds then
calculate its final velocity!!!
* Drawing and labeling the figure:
* Writing the givens...
Given: vi = 30 m/s
-----: a = 3.4 m/s
-----: t = 20 seconds
* Writing the unknown(s) ...
Find: vf = ?
* Select a solution strategy/formula:
vf = vi + a * time elapsed
* Performing the solution
solution:
Above, it is usually customary to box the solution!!!
Using a computer program to verify the solution is correct.
Now that we've followed the steps in solving the problem, another fun trick is to solve the problem using a computer language like BASIC.
In BASIC, however, it looks like this:
10 Print "Calculating final velocity given acceleration"
20 Print "Given a car rolling with initial velocity of"
30 Print "30 m/s with an acceleration of 3.4 m/s/s"
40 Print "calulate its final velocity if it rolls for"
50 Print "20 seconds."
60 VI = 30
70 ACL = 3.4
80 DT = 20
100 VF = VI + ACL * DT
110 Print "The final speed is ... ", VF;
120 Print " m/s"
Comments
Post a Comment