Impulse, denoted as J, is defined by the change in momentum. Since we have our initial and our final, we can solve for the change in momentum.
Answer:
67.9 kg*m/s
Explanation:
Pi = 38 kgm/s
F = 88.3N and ∆t = 0.338s
Final momentum Pf = Pi + F∆t = 38 + (88.3)(0.338) = 38 + 29.8454
=) Pf = 67.8454 kgm/s = 67.85kg*m/s
Your answer is 67.9kg*m/s with three significant figures
hope this helps your troubles!
Answer:
a) x = 8.8 cm * cos (9.52 rad/s * t)
b) x = 8.45 cm
Explanation:
This is a Simple Harmonic Motion, and most Simple Harmonic Motion equations start from the equilibrium point. In this question however, we are starting from the max displacement the equations, and thus, it ought to be different.
From the question, we are given that
A = 8.8 cm = 0.088 m
t = 0.66 s
Now, we need to find the angular speed w, such that
w = 2π/T
w = (2 * 3.142) / 0.66
w = 6.284 / 0.66
w = 9.52 rad/s
The displacement equation of Simple Harmonic Motion is usually given as
x = A*sin(w*t)
But then, the equation starts from the equilibrium point at 0 sec, i.e x = 0 m
When you have to start from the max displacement, then the equation would be
x = A*cos(w*t).
So when t = 0 the cos(0) = 1, and then x = A which is max displacement.
Thus, the equation is
x = 8.8 cm * cos (9.52 rad/s * t)
At t = 1.7 s,
x = 8.8 cos (9.52 * 1.7)
x = 8.8 cos (16.184)
x = -8.45 cm
Answer: The IF clause.
Explanation: This is the IF clause; you can use it as:
IF (something = true) then "something happens"
else "other thing happens"
Some example of it can be, suppose that your program reads a number X that the user inputs, then you can do:
If ( X > 5) then
print: "the number X is bigger than five"
Else
print: "the number X is smaller than five"
Where, of course, the statements depend on the language used, but the "if" clause works almost the same in every language.