1answer.
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
stealth61 [152]
3 years ago
10

The cars of a roller-coaster ride have a speed of 19.0 km/h as they pass over the top of the circular track. Neglect any frictio

n and calculate their speed v when they reach the horizontal bottom position. At the top position, the radius of the circular path of their mass centers is 21 m, and all six cars have the same mass. What is v?
Engineering
1 answer:
Dmitrij [34]3 years ago
3 0

Complete Question

The cars of a roller-coaster ride have a speed of 19.0 km/h as they pass over the top of the circular track. Neglect any friction and calculate their speed v when they reach the horizontal bottom position. At the top position, the radius of the circular path of their mass centers is 21 m, and all six cars have the same mass.V = -18 m What is v?X km/h

Answer:

v=23.6m/s

Explanation:

Velocity v_c=18.0km/h

Radius r=21m

initial velocity uu=19=>5.27778

Generally the equation for Angle is mathematically given by

\theta=\frac{v_c}{2r}

\theta=\frac{18}{2*21}

\theta=0.45

\theta=25.7831 \textdegree

Generally

Height of mass

h=\frac{rsin\theta}{\theta}

h=\frac{21sin25.78}{0.45}

h=20.3m

Generally the equation for Work Energy is mathematically given by

0.5mv_0^2+mgh=0.5mv^2

Therefore

v=\sqrt{u^2+2gh}

v=\sqrt{=5.27778^2+2*9.81*20.3}

v=23.6m/s

You might be interested in
Who want to 1v1 lol unblocked games 76 with me
Ede4ka [16]

Answer:

what's that??

Explanation:

7 0
3 years ago
Read 2 more answers
Difference between a scientists and an engineer
UNO [17]

Answer:

Scientists observe the world, while engineers focus on creating. While both fields do involve observation and analysis, engineering mainly deals with creating and working on already existing creations, while scientists work with things in nature.

5 0
2 years ago
An automobile travels along a straight road at 15.65 m/s through a 11.18 m/s speed zone. A police car observed the automobile. A
irina [24]

An automobile travels along a straight road at 15.65 m/s through a 11.18 m/s speed zone. A police car observed the automobile. At the instant that the two vehicles are abreast of each other, the police car starts to pursue the automobile at a constant acceleration of 1.96 m/s2 . The motorist noticed the police car in his rear view mirror 12 s after the police car started the pursuit and applied his brakes and decelerates at 3.05 m/s2

Find the total time required for the police car  to over take the automobile.

Answer:

15.02 sec

Explanation:

The total time required for the police car to overtake the automobile is related to the distance covered by both  cars which is equal from instant point of abreast.

So; we can say :

D_{pursuit} =D_{police}

By using the second equation of motion to find the distance S;

S= ut + \dfrac{1}{2}at^2

D_{pursuit} = (15.65 *12 )+(15.65 (t)+ (\dfrac{1}{2}*(-3.05)t^2)

D_{pursuit} = (187.8)+(15.65 \ t)-0.5*(3.05)t^2)

D_{pursuit} = (187.8+15.65 \ t-1.525 t^2)

D_{police} = ut _P + \dfrac{1}{2}at_p^2

where ;

u  = 0

D_{police} =  \dfrac{1}{2}at_p^2

D_{police} =  \dfrac{1}{2}*(1.96)*(t+12)^2

D_{police} = 0.98*(t+12)^2

D_{police} = 0.98*(t^2 + 144 + 24t)

D_{police} = 0.98t^2 + 141.12 + 23.52t

Recall that:

D_{pursuit} =D_{police}

(187.8+15.65 \ t-1.525 t^2)=  0.98t^2 + 141.12 + 23.52t

(187.8 - 141.12)  + (15.65 \ t  -  23.52t)  -( 1.525 t^2    - 0.98t^2)  =   0

= 46.68 - 7.85 t -2.505 t² = 0

Solving by using quadratic equation;

t = -6.16 OR  t = 3.02

Since we can only take consideration of the value with a  positive integer only; then t = 3.02 secs

From the question; The motorist noticed the police car in his rear view mirror 12 s after the police car started the pursuit;

Therefore ; the total time  required for the police car  to over take the automobile = 12 s + 3.02 s

Total time  required for the police car  to over take the automobile = 15.02 sec

8 0
2 years ago
Milestone 1: Write code which asks for a length input until it gets an integer 10 or greater, then creates 2 arrays of this leng
jonny [76]

Answer:

import java.util.Scanner;

import java.lang.Math;

class Main {

  public static void main(String[] args) {

      int length = 0;

      boolean lengthCheck = true;

      Scanner scan = new Scanner(System.in);

      while (lengthCheck == true)

      {

          System.out.println("Enter an array length (must be 10 or greater):");

          length = scan.nextInt();

          if (length >= 10)

          {

              lengthCheck = false;

          }

      }

      int[] firstArray = new int[length];

      int[] secondArray = new int[length];

      System.out.print("\nFirst Array: ");

      for (int i = 0; i < length; i++)

      {

          firstArray[i] = (int) (Math.random() * 100) + 1;

          System.out.print(firstArray[i] + " ");

      }

      System.out.print("\n\nSecond Array: ");

      for (int i = 0; i < length; i++)

      {

          secondArray[i] = (int) (Math.random() * 100) + 1;

          System.out.print(secondArray[i] + " ");

      }

      System.out.println("\n");

     

      boolean[] isAdded = new boolean[100];

      int[] merge = new int[(firstArray.length + secondArray.length)];

     

      int j=0;

      for (int i = 0; i < length; i++)

      {

          if(!isAdded[firstArray[i] - 1]) {

              merge[j] = firstArray[i];

              j++;

              isAdded[firstArray[i] - 1] = true;

          }

         

          if(!isAdded[secondArray[i] - 1]) {

              merge[j] = secondArray[i];

              j++;

              isAdded[secondArray[i] - 1] = true;

          }

         

      }

     

      System.out.print("Merged Array: ");

     

      for (int i = 0; i < 2*length && merge[i] != 0; i++)

      {

          System.out.print(merge[i] + " ");

      }

      System.out.println("\n");

     

  }

}

3 0
3 years ago
A wet electrode can cause arc blow ?
irga5000 [103]

Answer:

yes it can

Explanation:

6 0
2 years ago
Other questions:
  • Suppose an underground storage tank has been leaking for many years, contaminating a groundwater and causing a contaminant conce
    8·1 answer
  • What's the difference between accuracy and percision in measuring and gaging?
    10·1 answer
  • Explain the four criteria for proving the correctness of a logical pretest loop construct of the form "while B do S end". And pr
    12·1 answer
  • Determine the work done by an engine shaft rotating at 2500 rpm delivering an output torque of 4.5 N.m over a period of 30 secon
    12·1 answer
  • 5. Consider the LTI system defined by the differential equation (a) Draw the pole-zero plot for the system. Is the system stable
    12·1 answer
  • Using leftover paint colors is acceptable in a paint shop and will help cut down on waste.
    13·2 answers
  • A reversible power cycle R and an irreversible power cycle I operate between the same hot and cold thermal reservoirs. Cycle I h
    8·1 answer
  • Which cod is the best whoever has the best awnser gets brainliest​
    12·1 answer
  • Thick fluids such as asphalt and waxes and the pipes in which they flow are often heated in order to reduce the viscosity of the
    8·1 answer
  • A 9 -slug mass hangs by a rope from the ceiling. Using the standard value of gravitational acceleration g = 32.2 fts 2, what is
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!