Py 205-004/005 Practice Test 1 - Physics Problems, Exercises of Physics

A practice test for a physics course, consisting of multiple-choice problems covering topics such as momentum, young's modulus, gravitational forces, and circular motion. Students are required to show their work and provide explanations for their answers.

Typology: Exercises

2023/2024

Uploaded on 02/01/2024

vikram-malik-1
vikram-malik-1 🇺🇸

1 document

1 / 8

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
1
PY 205-004/005 Practice Test 1, 2004 Feb. 10
Print name_________________________________________________________________Lab section_________
I have neither given nor received unauthorized aid on this test.
Sign ature:___________________________________________________________
When you turn in the test (including formula page) you must show an NCSU photo ID to identify yourself.
Do not use other pap er. If you need more space, write on the back of a page and indicate that you did this.
• Read all problems carefully before atte mptin g to solve them.
• You must show all your work. Use correct vector notation.
• Your work must be legible, and the organization must be clear.
• Correct answers without adequate explanation will be counted wrong.
• Incorrect explanations mixed in with correct explanations will be counted wrong.
Cross out anything you don’t want us to read!
• Make explanations complete but brief. Do not write a lot of prose.
• Include diagrams where appropriate to explain your work.
• Show what goes into a calculation, not just the final number:
• Give standard SI units with your results.
Unless specifically asked to derive a result, you may start from the formulas given on the formula sheet.
If you cannot do some portion of a problem, invent a symbol for the quantity you can’t calculate (explain
that you’re doing this), and do the rest of the problem.
Problem Score
1 (25 pts):_______
2 (25 pts):_______
3 (25 pts):_______
4 (25 pts):_______
5 (5 pts):_______ (bonus)
Total (100 pts): _______
83
×10()56
×10()
25
×10()44
×10()
------------------------------------------ 5 4
×10=
pf3
pf4
pf5
pf8

Partial preview of the text

Download Py 205-004/005 Practice Test 1 - Physics Problems and more Exercises Physics in PDF only on Docsity!

PY 205-004/005 Practice Test 1, 2004 Feb. 10

Print name_________________________________________________________________Lab section_________

I have neither given nor received unauthorized aid on this test.

Sign ature:___________________________________________________________

When you turn in the test (including formula page) you must show an NCSU photo ID to identify yourself. Do not use other paper. If you need more space, write on the back of a page and indicate that you did this.

**- Read all problems carefully before attempting to solve them.

  • You must show all your work. Use correct vector notation.
  • Your work must be legible, and the organization must be clear.
  • Correct answers without adequate explanation will be counted wrong.
  • Incorrect explanations mixed in with correct explanations will be counted wrong.** **Cross out anything you don’t want us to read!
  • Make explanations complete but brief. Do not write a lot of prose.
  • Include diagrams where appropriate to explain your work.
  • Show what goes into a calculation, not just the final number:
  • Give standard SI units with your results.**

Unless specifically asked to derive a result, you may start from the formulas given on the formula sheet.

If you cannot do some portion of a problem, invent a symbol for the quantity you can’t calculate (explain that you’re doing this), and do the rest of the problem.

Problem Score

1 (25 pts):_______

2 (25 pts):_______

3 (25 pts):_______

4 (25 pts):_______

5 (5 pts):_______ (bonus)

Total (100 pts): _______

  • 3 ( × 10 ) 5 6 ( × 10 ) ( 2 × 10 –^5 ) ( 4 × 104 )

4 = × 10

Problem 1 (25 pts)

(a) (7 pts) An electron with a speed of is emitted by a supernova, where c is the speed of light. What is the magnitude of the momentum of this electron?

(b) (6 pts) A thin iron rod is suspended vertically. The dimensions of the rod are 2.3 m by 1.6 mm by 1. mm. When you hang a mass of 37 kg from the end of the rod, you find that the rod stretches 2 mm ( ). What is Young’s modulus for iron?

(c) (12 pts) Here is a portion of the trajectories of two similar asteroids that are moving away from each other, with positions marked at times t 1 , t 2 , and t 3. There are no other objects near the asteroids. At each of these positions, draw vectors of appropriate lengths and directions for the forces acting on the asteroids at that location, and label them. Then at the same locations draw vectors of appropriate lengths and directions for the momenta of the asteroids at those locations, and label them. (“Appropriate lengths” means that larger magnitudes are represented by longer vectors.)

0.95 c

  • 3 × 10 m

F

p

t 1

t 2

t 3

t 3

t 2

t 1

Problem 3 (25 pts) A ball of unknown mass m is attached to a spring. In outer space, far from other objects, you hold the other end of the spring and swing the ball around in a circle of radius 1.5 m at constant speed.

(a) (3 pts) You time the motion and observe that going around 10 times takes 6.88 seconds. What is the angular speed ω?

(b) (3 pts) What is the speed of the ball?

(c) (4 pts) Is the momentum of the ball changing or not? How can you tell?

(d) (4 pts) If the momentum is changing, what interaction is causing it to change? If the momentum is not changing, why isn’t it?

(e) (4 pts) The relaxed length of the spring is 1.2 m, and its stiffness is 1000 N/m. While you are swinging the ball, since the radius of the circle is 1.5 m, the length of the spring is also 1.5 m. What is the magnitude of the force that the spring exerts on the ball?

(f) (7 pts) What is the mass m of the ball?

Problem 4 (25 pts) Here is a portion of a program to calculate and display the orbit of a planet around a star so mas- sive compared to the planet that we can neglect the star’s motion. Write or interpret program statements as specified.

from visual import * from future import division

G = 6.7e- deltat = 6060 t = 0

star = sphere(pos=vector(0,4e11,0), radius=8e10, color=color.yellow) star.mass = 1.3e planet = sphere(pos=vector(9e11,0,0), radius=5e10, color=color.cyan) planet.mass = 8e planet.trail = curve(color=planet.color)

The initial velocity of the planet is < 0, 3.5e4, 0 >. Write a statement to set the initial momentum of the planet:

planet.p =

while t < 1e9:

( a) (2 pts) Write a statement to calculate the current vector that points from the planet to the star:

r =

(b) (2 pts) Write a statement to calculate the magnitude of the vector that points from the planet to the star:

rmag =

rhat = r/rmag

(c) (2 pts) Write a statement to calculate the magnitude of the gravitational force acting on the planet:

Fmag =

(d) (2 pts) Write a statement to calculate the vector gravitational force acting on the planet:

Fnet =

(e) (3 pts) Write a statement to update the planet’s momentum:

planet.p =

(f) (2 pts) Write a statement to update the planet’s position:

planet.pos =

planet.trail.append(pos=planet.pos) t = t + deltat

(continued on next page)

Problem 5 (5 pts)

Since this problem is only worth 5 bonus points, don’t attempt it unless you have finished all the other problems and checked your work.

There is no general analytical solution for the motion of a gravitational sys- tem consisting of more than two bodies. However, there do exist analytical solutions for very special initial conditions. Here are four stars, each of mass m , which move in the plane of the page along a circle of radius r. Cal- culate how long this system takes to make one complete revolution. You can assume that v << c.

r

m

m m

m

FUNDAMENTAL PHYSICAL LAWS AND RELATIONSHIPS

Principle of relativity: Physical laws work in the same way for observers in uniform motion as for observers at rest.

The superposition principle: the effective force on an object is the “net” force, the vector sum of all forces acting on the object, each force unaffected by the presence of other interactions.

The momentum principle, and the definition of momentum. (These must be memorized.)

The relationship among position, velocity, and time. (This must be memorized.)

EVALUATING SPECIFIC PHYSICAL QUANTITIES

near the Earth’s surface

, opposite the stretch

Circular motion at constant speed: , or for << c

where

CONSTANTS

N·m 2 /kg 2 g = 9.8 N/kg

kg kg

Radius of the Earth = m Radius of the Moon = m

Distance from Sun to Earth = m Distance from Earth to Moon = m

Avogadro’s number = Typical atomic radius

m (^) electron = kg m proton ≈ m neutron ≈ m hydrogen atom =

CONVERSION FACTORS

1 pound = 0.45 kilogram 1 kilogram = 2.2 pounds

1 mile = 1600 meters 1 inch = 2.54 centimeters 1 hour = (60)(60) s = 3600 s

F (^) gravitational G

m 1 m 2 r 2

= -------------- F (^) gravitational ≈ mg

F (^) spring = k (^) s s Y F^ ⁄ ALL

k (^) s ,interatomic d atomic

d p dt

m ω^2 1 – v 2 ⁄ c^2

= – -------------------------------r d p dt

------ (^) ≈ – m ω^2 r v

ω d θ dt

------ 2 π T

= = ------ v 2 π^ r T

= ----------- =ω r

G 6.

  • 11 = × 10 c 3 8 = × 10 m/s

M Earth 6 24 = × 10 M Moon 7 22 = × 10

6 × 10 1. 6 × 10

1.5 × 1011 4 × 108

23 × 10 r ≈ 10 –^10 m

  • 31 × 10 1.
  • 27 × 10 kg