Question: vf = ufloat ( 0 . 0 8 5 , 0 . 0 0 4 1 ) # vf is the velocity of the combined

vf = ufloat(0.085,0.0041) # vf is the velocity of the combined cars after the collision
Exercise 1b
case (e.g. from K1i to k1i ).
For full credit:
Use "f-strings" to print your calculated values.
Make sure each quantity is printed with its correct unit. Follow the example for p1i .
Verify that your code produces sensible results.
[]: p1i = m1*v1i # Momentum of m1 before collision
p2i = m2*v2i # Momentum of m2 before collision
print(f'Momentum of m1 before collision: {p1i:eP} kgm/s')
print(f'Momentum of m2 before collision: {p2i:eP} kgm/s')
pi = # Total momentum before collision
mtot = # Combined mass
pf = # Total momentum after collision
p_ratio = # Ratio of total momentum after/before collision
print() # Print your calculated values (one per print statement. Use f-strings)
print()
print()
print()
K1i = # Kinetic energy of m1 before collision
K2i = # Kinetic energy of m2 before collision
print()
print()
Ki = # Total kinetic energy before collision
Kf = # Total kinetic energy after collision
K_ratio = # Ratio of total kinetic energy after/before collision
print()
print()
print()
YOUR CODE HERE
vf = ufloat ( 0 . 0 8 5 , 0 . 0 0 4 1 ) # vf is

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!