<< Chapter < Page Chapter >> Page >

h = v0*t + 0.5*g*t^2

where

  • h is the distance of the projectile above the surface of the earth in units of distance
  • v0 is the initial velocity of the projectile in units of distance/time
  • t is time in seconds
  • g is the acceleration of gravity, approximately 9.8 meters per second squared, or approximately 32.2 feet per second squared.

Some physics textbooks also list the following equations as being important .

v = v0 + g*t

v^2 = v0^2 + 2*g*h

where v is the velocity of the object and the other terms are the same as described above .

Exercise to find the velocity

Let's do an exercise using the first of the two equations given above .

An individual on the surface of the earth shoots an arrow directly upward with a velocity of 100 feet per second. How many seconds elapse before the arrow turns and starts falling towards thesurface of the earth. Ignore the effects of air resistance.

Create a script

Please copy the code from Listing 6 into an html file and open the file in your browser.

Listing 6 . Exercise to find the velocity.
<!---------------- File JavaScript06.html ---------------------><html><body><script language="JavaScript1.3">document.write("Start Script</br></br>"); //Initialize the problem parameters.var g = -32.2;//gravity in ft/sec*sec on Earth var v0 = 100;//initial velocity in ft/sec//Given that v = v0 + g * t //At what time does the velocity go to zero?//Rearrange the terms in the equation. var t = -v0/g;//Display the results document.write("Arrow has zero velocity at " +t.toFixed(2) + " seconds " + "</br>"); document.write("</br>End Script");</script></body></html>

Screen output

The text shown in Figure 14 should appear in your browser window when you open the html file in your browser.

Figure 14 . Screen output for Listing #6.
Start Script Arrow has zero velocity at 3.11 secondsEnd Script

Analysis of the code

Compared to working through the solutions to the previous exercises, this one seems almost trivial.

After establishing values for the acceleration of gravity and the initial velocity of the arrow, the code in Listing 6 rearranges the first equation given above and solves for the value of time at which the velocity goes to zero. This is the point in time when the arrow turnsfrom moving up and begins falling back toward the earth.

The results are shown in Figure 14 . You should compare this result with Figure 1 , which shows that the arrow reaches its maximum height at approximately 3 seconds, which agrees very well with the result shown in Figure 14 .

Exercise to find the height

Let's do an exercise using the second of the two equations given above .

An individual that is six feet tall standing on the surface of the earth shoots an arrow directly upward with a velocity of 100 feet per second. What is the maximum height achieved by the arrow before it turns and falls backtowards the surface of the earth? Ignore the effects of air resistance.

Create a script

Please copy the code from Listing 7 into an html file and open the file in your browser.

Listing 7 . Exercise to find the height.
<!---------------- File JavaScript07.html ---------------------><html><body><script language="JavaScript1.3">document.write("Start Script</br></br>"); //Initialize the problem parameters.var g = -32.2;//gravity in ft/sec*sec on Earth var v0 = 100;//initial velocity in ft/secvar h0 = 6;//initial height //Given that v^2 = v0^2 + 2*g*h//What is the maximum height reached by the arrow? //Note that the maximum height is six feet more than// the value given by the above equation because that // equation is based on the point of release.//The maximum height occurs when the velocity goes to zero. //Setting the velocity to zero and rearranging the terms// in the equation gives: var h = h0 + (-(v0 * v0))/(2*g);//Display the results document.write("Arrow reaches maximum height of " +h.toFixed(2) + " feet " + "</br>"); document.write("</br>End Script");</script></body></html>

Questions & Answers

what is biology
Hajah Reply
the study of living organisms and their interactions with one another and their environments
AI-Robot
what is biology
Victoria Reply
HOW CAN MAN ORGAN FUNCTION
Alfred Reply
the diagram of the digestive system
Assiatu Reply
allimentary cannel
Ogenrwot
How does twins formed
William Reply
They formed in two ways first when one sperm and one egg are splited by mitosis or two sperm and two eggs join together
Oluwatobi
what is genetics
Josephine Reply
Genetics is the study of heredity
Misack
how does twins formed?
Misack
What is manual
Hassan Reply
discuss biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles
Joseph Reply
what is biology
Yousuf Reply
the study of living organisms and their interactions with one another and their environment.
Wine
discuss the biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles in an essay form
Joseph Reply
what is the blood cells
Shaker Reply
list any five characteristics of the blood cells
Shaker
lack electricity and its more savely than electronic microscope because its naturally by using of light
Abdullahi Reply
advantage of electronic microscope is easily and clearly while disadvantage is dangerous because its electronic. advantage of light microscope is savely and naturally by sun while disadvantage is not easily,means its not sharp and not clear
Abdullahi
cell theory state that every organisms composed of one or more cell,cell is the basic unit of life
Abdullahi
is like gone fail us
DENG
cells is the basic structure and functions of all living things
Ramadan
What is classification
ISCONT Reply
is organisms that are similar into groups called tara
Yamosa
in what situation (s) would be the use of a scanning electron microscope be ideal and why?
Kenna Reply
A scanning electron microscope (SEM) is ideal for situations requiring high-resolution imaging of surfaces. It is commonly used in materials science, biology, and geology to examine the topography and composition of samples at a nanoscale level. SEM is particularly useful for studying fine details,
Hilary
cell is the building block of life.
Condoleezza Reply
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Accessible physics concepts for blind students. OpenStax CNX. Oct 02, 2015 Download for free at https://legacy.cnx.org/content/col11294/1.36
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Accessible physics concepts for blind students' conversation and receive update notifications?

Ask