Answer:
(a) t = 1.14 s
(b) h = 0.82 m
(c) vf = 7.17 m/s
Explanation:
(b)
Considering the upward motion, we apply the third equation of motion:

where,
g = - 9.8 m/s² (-ve sign for upward motion)
h = max height reached = ?
vf = final speed = 0 m/s
vi = initial speed = 4 m/s
Therefore,

<u>h = 0.82 m</u>
Now, for the time in air during upward motion we use first equation of motion:

(c)
Now we will consider the downward motion and use the third equation of motion:

where,
h = total height = 0.82 m + 1.8 m = 2.62 m
vi = initial speed = 0 m/s
g = 9.8 m/s²
vf = final speed = ?
Therefore,

<u>vf = 7.17 m/s</u>
Now, for the time in air during downward motion we use the first equation of motion:

(a)
Total Time of Flight = t = t₁ + t₂
t = 0.41 s + 0.73 s
<u>t = 1.14 s</u>
Answer:
100 cm³
Explanation:
Use ideal gas law:
PV = nRT
where P is absolute pressure, V is volume, n is number of moles, R is ideal gas constant, and T is absolute temperature.
n and R are constant, so:
P₁V₁/T₁ = P₂V₂/T₂
If we say point 1 is at 40m depth and point 2 is at the surface:
P₂ = 1.013×10⁵ Pa
T₂ = 20°C + 273.15 = 293.15 K
P₁ = ρgh + P₂
P₁ = (1000 kg/m³ × 9.8 m/s² × 40 m) + 1.013×10⁵ Pa
P₁ = 4.933×10⁵ Pa
T₁ = 4.0°C + 273.15 = 277.15 K
V₁ = 20 cm³
Plugging in:
(4.933×10⁵ Pa) (20 cm³) / (277.15 K) = (1.013×10⁵ Pa) V₂ / (293.15 K)
V₂ = 103 cm³
Rounding to 1 sig-fig, the bubble's volume at the surface is 100 cm³.
T = 2*pi*Sqrt (L/g)
T = Period = Time to complete one oscillation, L = Length of the pendulum, g = gravitational acceleration.
Then,
L = {T/(2*pi)}^2*g = {7/(2*pi)}^2*3.711 = 4.606 m
I think it's 39.53
(please do calculate it. I am not completely sure)
Answer:
Written in Python
def energyvector(mass):
c = 2.9979 * 10**8
energy = mass * c ** 2
print(round(energy,2))
Explanation:
This line defines the function
def energyvector(mass):
This line initializes the speed of light
c = 2.9979 * 10**8
This line calculates the corresponding energy
energy = mass * c ** 2
This line prints the calculated energy
print(round(energy,2))