<span>The gravitational pull of the sun and moon combined
create larger than normal tides.</span>
Answer:
(a) 17.37 rad/s^2
(b) 12479
Explanation:
t = 95 s, r = 6 cm = 0.06 m, v = 99 m/s, w0 = 0
w = v / r = 99 / 0.06 = 1650 rad/s
(a) Use first equation of motion for rotational motion
w = w0 + α t
1650 = 0 + α x 95
α = 17.37 rad/s^2
(b) Let θ be the angular displacement
Use third equation of motion for rotational motion
w^2 = w0^2 + 2 α θ
1650^2 = 0 + 2 x 17.37 x θ
θ = 78367.87 rad
number of revolutions, n = θ / 2 π
n = 78367.87 / ( 2 x 3.14)
n = 12478.9 ≈ 12479
Line of code will call force with a value of 10 for mass and a value of 9.81 for acceleration is force(10, 9.81).
<h3 /><h3>Line of code for force and acceleration</h3>
- In mechanics, acceleration refers to the rate at which an object's velocity with respect to time varies.
- Acceleration is a vector quantity (in that they have magnitude and direction).
- The direction of an object's acceleration is determined by the direction of the net force acting on it.
- Newton's Second Law states that the combined effect of two factors determines how much an item accelerates.
- The size of the net balance of all external forces acting on the object is, in accordance with the materials used to create it.
- It inversely proportional to its mass, whereas the magnitude of the net resultant force is directly proportional to the net force.
def force(mass, acceleration):
force_val = mass*acceleration
return force_val
10 is assigned to mass and 9.81 is assigned to acceleration
def force(10, 9.81)
So, Line of code will call force with a value of 10 for mass and a value of 9.81 for acceleration is force(10, 9.81).
Learn more about acceleration here:
brainly.com/question/460763
#SPJ4