Answer:
A.) Find the answer in the explanation
B.) Ua = 7.33 m/s , Vb = 7.73 m/s
C.) Impulse = 17.6 Ns
D.) 49%
Explanation:
Let Ua = initial velocity of the rod A
Ub = initial velocity of the rod B
Va = final velocity of the rod A
Vb = final velocity of the rod B
Ma = mass of rod A
Mb = mass of rod B
Given that
Ma = 2kg
Mb = 1kg
Ub = 3 m/s
Va = 0
e = restitution coefficient = 0.65
The general expression for the velocities of the two rods after impact will be achieved by considering the conservation of linear momentum.
Please find the attached files for the solution
Answer:
850.8480103 feet
Explanation:
First you take the diameter and find the circumference, which is (2)(pi)(r) plug in your r which is 26/2= 13 so 2(13)(pi) and multiply taht by 125 after that take your answer and divide by 12which is 850.8480103
Answer:
// Program is written in Java Programming Language
// Comments are used for explanatory purpose
import java.util.*;
public class FlipCoin
{
public static void main(String[] args)
{
// Declare Scanner
Scanner input = new Scanner (System.in);
int flips;
// Prompt to enter number of toss or flips
System.out.print("Number of Flips: ");
flips = input.nextInt();
if (flips > 0)
{
HeadsOrTails();
}
}
}
public static String HeadsOrTails(Random rand)
{
// Simulate the coin tosses.
for (int count = 0; count < flips; count++)
{
rand = new Random();
if (rand.nextInt(2) == 0) {
System.out.println("Tails"); }
else {
System.out.println("Heads"); }
rand = 0;
}
}
Lick the bullet and push it down