answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
lidiya [134]
2 years ago
12

) A 5 kg ball A strikes a 1kg ball B that is initially at rest. It is possible that after the impact A is not moving and B has a

speed of 5v
Engineering
1 answer:
stepan [7]2 years ago
8 0

Answer:

yes, this is true statement

Explanation:

given data

mass m1 = 5 kg

mass m2 = 1 kg

speed v =  5v

to find out

It is possible that after the impact A is not moving and B has a speed of 5v

solution

first we get here initial momentum that is express as

initial momentum = m1v1 + m2v2

initial momentum =  5×V + 1 × 0

initial momentum =  5V

and

now we get final momentum

final momentum  = m2v2+ m1v1

final momentum  = 1 × 5V + 5 × 0

final momentum  = 5v

so here we can say momentum is conserved

so this is the case of pure elastic collision

so we can say yes, this is true statement

You might be interested in
A shaft consisting of a steel tube of 50-mm outer diameter is to transmit 100 kW of power while rotating at a frequency of 34 Hz
nikitadnepr [17]

Answer:

25 - \sqrt[4]{26.66*10^{-8} }  mm

Explanation:

Given data

steel tube : outer diameter = 50-mm

power transmitted = 100 KW

frequency(f) = 34 Hz

shearing stress ≤ 60 MPa

Determine tube thickness

firstly we calculate the ; power, angular velocity and torque of the tube

power = T(torque) * w (angular velocity)

angular velocity ( w ) = 2\pif = 2 * \pi * 34 = 213.71

Torque (T) = power / angular velocity = 100000 / 213.71 = 467.92 N.m/s

next we calculate the inner diameter  using the relation

  \frac{J}{c_{2}  } = \frac{T}{t_{max} }  = 467.92 / (60 * 10^6) =  7.8 * 10^-6 m^3

also

c2 = (50/2) = 25 mm

\frac{J}{c_{2} } = \frac{\pi }{2c_{2} } ( c^{4} _{2} - c^{4} _{1} ) =  \frac{\pi }{0.050} [ ( 0.025^{4} - c^{4} _{1}  ) ]

therefore; 0.025^4 - c^{4} _{1} = 0.050 / \pi (7.8 *10^-6)

c^{4} _{1} = 39.06 * 10 ^-8 - ( 1.59*10^-2 * 7.8*10^-6)

    39.06 * 10^-8 - 12.402 * 10^-8 =26.66 *10^-8

c_{1} = \sqrt[4]{26.66 * 10^{-8} }  =

THE TUBE THICKNESS

c_{2} - c_{1} = 25 - \sqrt[4]{26.66*10^{-8} }  mm

4 0
2 years ago
An automobile having a mass of 900 kg initially moves along a level highway at 100 km/h relative to the highway. It then climbs
creativ13 [48]

Answer:

ΔKE=-347.278 kJ

ΔPE= 441.45 kJ

Explanation:

given:

mass m=900 kg

the gravitational acceleration g=9.81 m/s^2

the initial velocity V_{1}=100 km/h-->100*10^3/3600=27.78 m/s

height above the highway h=50 m

h1=0m

the final velocity V_{F}=0 m/s

<u>To find:</u>

the change in kinetic energy ΔKE

the change in potential energy ΔPE

<u>assumption:</u>

We take the highway as a datum

<u>solution:</u>

ΔKE=5*m*(V_{F}^2-V_{1}^2)

      =-347.278 kJ

ΔPE=m*g*(h-h1)

      = 441.45 kJ

5 0
2 years ago
Fix the code so the program will run correctly for MAXCHEESE values of 0 to 20 (inclusive). Note that the value of MAXCHEESE is
GarryVolchara [31]

Answer:

Code fixed below using Java

Explanation:

<u>Error.java </u>

import java.util.Random;

public class Error {

   public static void main(String[] args) {

       final int MAXCHEESE = 10;

       String[] names = new String[MAXCHEESE];

       double[] prices = new double[MAXCHEESE];

       double[] amounts = new double[MAXCHEESE];

       // Three Special Cheeses

       names[0] = "Humboldt Fog";

       prices[0] = 25.00;

       names[1] = "Red Hawk";

       prices[1] = 40.50;

       names[2] = "Teleme";

       prices[2] = 17.25;

       System.out.println("We sell " + MAXCHEESE + " kind of Cheese:");

       System.out.println(names[0] + ": $" + prices[0] + " per pound");

       System.out.println(names[1] + ": $" + prices[1] + " per pound");

       System.out.println(names[2] + ": $" + prices[2] + " per pound");

       Random ranGen = new Random(100);

       // error at initialising i

       // i should be from 0 to MAXCHEESE value

       for (int i = 0; i < MAXCHEESE; i++) {

           names[i] = "Cheese Type " + (char) ('A' + i);

           prices[i] = ranGen.nextInt(1000) / 100.0;

           amounts[i] = 0;

           System.out.println(names[i] + ": $" + prices[i] + " per pound");

       }        

   }

}

7 0
2 years ago
Write a method printShampooInstructions(), with int parameter numCycles, and void return type. If numCycles is less than 1, prin
kirill [66]

Answer:

// The method is defined with a void return type

// It takes a parameter of integer called numCycles

// It is declared static so that it can be called from a static method

public static void printShampooInstructions(int numCycles){

// if numCycles is less than 1, it display "Too few"

   if (numCycles < 1){

       System.out.println("Too few.");

   }

// else if numCycles is less than 1, it display "Too many"

    else if (numCycles > 4){

       System.out.println("Too many.");

   }

// else it uses for loop to print the number of times to display

// Lather and rinse

  else {

       for(int i = 1; i <= numCycles; i++){

           System.out.println(i + ": Lather and rinse.");

       }

       System.out.println("Done");

       

   }

}

Explanation:

The code snippet is written in Java. The method is declared static so that it can be called from another static method. It has a return type of void. It takes an integer as parameter.

It display "Too few" if the passed integer is less than 1. Or it display "Too much" if the passed integer is more than 4. Else it uses for loop to display "Lather and rinse" based on the passed integer.

8 0
2 years ago
A thermometer requires 1 minute to indicate 98% of the response to a unit step input. Assuming the thermometer to be a first ord
Rama09 [41]

Answer:

Time constant = 15.34 seconds

The thermometer shows an error of 0.838°

Explanation:

Given

t = 1 minute = 60 seconds

c(t) = 98% = 0.98

According to the question, the thermometer is a first order system.

The first order system transfer function is given as;

C(s)/R(s) = 1/(sT + 1).

To calculate the time constant, we need to calculate the step response.

This is given as

r(t) = u(t) --- Take Laplace Transformation

R(s) = 1/s

Substitute 1/s for R(s) in C(s)/R(s) = 1/(sT + 1).

We have

C(s)/1/s = 1/(sT + 1)

C(s) = 1/(sT + 1) * 1/s

C(s) = 1/s - 1/(s + 1/T) --- Take Inverse Laplace Transformation

L^-1(C(s)) = L^-1(1/s - 1/(s + 1/T))

Since, e^-t <–> 1/(s + 1) --- {L}

1 <–> 1/s {L}

So, the unit response c(t) = 1 - e^-(t/T)

Substitute 0.98 for c(t) and 60 for t

0.98 = 1 - e^-(60/T)

0.98 - 1 = - e^-(60/T)

-0.02 = - e^-(60/T)

e^-(60/T) = 0.02

ln(e^-(60/T)) = ln(0.02)

-60/T = -3.912

T = -60/-3.912

T = 15.34 seconds

Time constant = 15.34 seconds

The error signal is given as

E(s) = R(s) - C(s)

Where the temperature changes at the rate of 10°/min; 10°/60 s = 1/6

So.

E(s) = R(s) - 1/6 C(s)

Calculating C(s)

C(s) = 1/s - 1/(s + 1/T)

C(s) = 1/s - 1/(s + 1/15.34)

Remember that R(s) = 1/s

So, E(s) becomes

E(s) = 1/s - 1/6(1/s - 1/(s + 1/15.34))

E(s) = 1/s - 1/6(1/s - 1/(s + 0.0652)

E(s) = 1/s - 1/6s + 1/(6(s+0.0652))

E(s) = 5/6s + 1/(6(s+0.0652))

E(s) = 0.833/s + 1/(6(s+0.0652)) ---- Take Inverse Laplace Transformation

e(t) = 1/6e^-0.652t + 0.833

For a first order system, the system attains a steady state condition when time is 4 times of Time constant.

So,

Time = 4 * 15.34

Time = 61.36 seconds

So, e(t) becomes

e(t) = 1/6e^-0.652t + 0.833

e(t) = 1/(6e^-0.652(61.36)) + 0.833

e(t) = 0.83821342824942664566211

e(t) = 0.838 --- Approximated

Hence, the thermometer shows an error of 0.838°

4 0
2 years ago
Read 2 more answers
Other questions:
  • A_____ transducer is a device that can convert an electronic controller output signal into a standard pneumatic output. A. pneum
    13·1 answer
  • Pam Jones worked for 41 years at the same company and had positive performance ratings and personnel records. She needed a calcu
    9·1 answer
  • (3) Calculate the heat flux through a sheet of brass 7.5 mm (0.30 in.) thick if the temperatures at the two faces are 150°Cand 5
    9·1 answer
  • ) A shaft encoder is to be used with a 50 mm radius tracking wheel to monitor linear displacement. If the encoder produces 256 p
    15·1 answer
  • Air is compressed adiabatically from p1 1 bar, T1 300 K to p2 15 bar, v2 0.1227 m3 /kg. The air is then cooled at constant volum
    13·1 answer
  • - Consider a 2024-T4 aluminum material with ultimate tensile strength of 70 ksi. In a given application, a component of this mat
    7·1 answer
  • A rectification column is fed 100 kg mol/h of a mixture of 50 mol % benzene and 50 mol % toluene at 101.32 kPa abs pressure. The
    5·1 answer
  • Milton has been tracking the migrating patterns of whales in the northwest Atlantic Ocean for five years. He knows where and whe
    5·2 answers
  • Who want to play "1v1 lol unblocked games 76"
    7·2 answers
  • Dalton needs to prepare a close-out report for his project. Which part of the close-out report would describe
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!