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
11Alexandr11 [23.1K]
3 years ago
10

Determine the time required for a car to travel 1 km along a road if the car starts from rest, reaches a maximum speed at some i

ntermediate point, and then stops at the end of the road. The car can accelerate at 1.5 m/s2 and decelerate at 2 m/s2. ​

Engineering
1 answer:
lbvjy [14]3 years ago
8 0

Total time taken by car to travel 1 km distance is 48.2 seconds

Explanation:

Given data-

Total distance- 1 km= 1000m

Car starts from rest- Hence the initial velocity (u)= 0 m/s

Then, car accelerates at 1.5 m/s ²

Let us suppose with these acceleration car reaches the max speed of V

Car then decelerates at rate of 2 m/s ²

Finally, car comes to rest

We need to consider the question in two parts

Part 1= when car starts from rest and reaches the value V in the time tₐ at the distance s₁.

Part 2= When car starts from V and finally stops at 1 km mark in the time tₙ in distance 1000-s₁.

For the part 1

We know the formula  

v= u + a*tₐ

where v= final velocity

u- initial velocity

a= acceleration

tₐ= time period

At the starting u= 0  

Hence the equation reduces to V=0+1.5tₐ

Or V= 1.5tₐ                             Eq 1

We also know that s= u*tₐ+ ¹/₂*a*tₐ²

Where s₁= distance covered  (other symbols same meaning)

Since u=0   (u*tₐ=0)

s₁ = ¹/₂*1.5*tₐ²

s₁= ½* 1.5*tₐ²                    -------------Eq 2

Now considering Part 2

Here the case is deceleration hence the equation would change (symbols same)

v= V-a*tₙ     final velocity(v)=0 (car stops finally) & initial velocity (part 2)= V

V= a*tₙ

V=2*tₙ                                 -----------Eq 3

Similarly  

1000-s₁= V* tₙ+¹/₂*(-2) *(tₙ)²

1000-s₁= V* tₙ-tₙ²                      -------Eq 4

Comparing Eq 1 and Eq 3

V= 1.5tₐ  and V=2tₙ                                                              

1.5tₐ = 2 tₙ

tₐ=1.33 tₙ  

Using the above value of tₐ in Eq 1

V= 1.5 tₐ and tₐ= 1.33 tₙ

V= 2tₙ

Similarly from Eq 2 and putting the value of tₙ

s₁= ½*1.5*tₐ²      

s₁=  1.33*(tₙ)²

Substituting the above values in equation 4

1000-s₁= V* tₙ-tₙ²                      

1000- 1.33(tₙ)²=2*(tₙ)*(tₙ)- tₙ²

1000=2.33 (tₙ)²

tₙ=      1000/2.333    

tₙ= 20.7 sec

Similarly putting the value of tₙ in tₐ= 1.33 tₙ

tₙ= 27.5 sec

Hence total time is tₐ +tₙ  

T= 20.7+27.5= 48.2 sec                

You might be interested in
A motor is mounted on a platform that is observed to vibrate excessively at an operating speed of 6000 rpm producing a 250-N for
vichka [17]

Answer:

The amplitude of the absorbed mass can be found

for ka:

X_{a} =0.002m=\frac{F_{0} }{K_{a} } =\frac{250}{K_{a} } =125000N/m

now

w^2=\frac{K_{a} }{m_{a} } \\m_{a} =\frac{K_{a} }{w^2} =\frac{125000}{[6000*2\pi /60]^2} =0.317kg

4 0
3 years ago
What are the functions of each computer program
Ludmilka [50]
A function is a block of organized, reusable code that is used to perform a single, related action. Functions provide better modularity for your application and a high degree of code reusing. ... Different programming languages name them differently, for example, functions, methods, sub-routines, procedures, etc.
4 0
3 years ago
Let's model this housing price data! Before we can do this, however, we need to split the data into training and test sets. Reme
Lilit [14]

The program reads in a dataset into a pandas dataframe, and uses the train_test_split function in the sklearn library to split the data into <em>training and test sets</em>. The code goes thus :

import pandas as pd

<em>#import</em><em> </em><em>the</em><em> </em><em>pandas</em><em> </em><em>dataframe</em><em> </em><em>and</em><em> </em><em>alias</em><em> </em><em>it</em><em> </em><em>as</em><em> </em><em>pd</em>

from sklearn.model_selection import train_test_split

<em>#import</em><em> </em><em>the</em><em> </em><em>train_test_split</em><em> </em><em>function</em><em> </em>

housing_df = pd.read_csv('housing price.csv')

<em>#read</em><em> </em><em>in</em><em> </em><em>the</em><em> </em><em>housing</em><em> </em><em>data</em><em> </em>

features_df = df.iloc[:,1:]

<em>#seperate</em><em> </em><em>the</em><em> </em><em>features</em><em> </em><em>from</em><em> </em><em>the</em><em> </em><em>label</em><em> </em><em>;</em>

target_df = df.iloc[:,0]

<em>#put</em><em> </em><em>the</em><em> </em><em>label</em><em> </em><em>into</em><em> </em><em>a</em><em> </em><em>seperate</em><em> </em><em>dataframe</em><em> </em><em>as</em><em> </em><em>well</em><em>.</em><em> </em>

X_train, X_test, Y_train, Y_test = train_test_split(features_df, target_df, test_size = 0.1, random_state = 1)

<em>#uses</em><em> </em><em>tuple</em><em> </em><em>unpacking</em><em> </em><em>to</em><em> </em><em>randomly</em><em> </em><em>assign</em><em> </em><em>the</em><em> </em><em>data</em><em> </em><em>each</em><em> </em><em>of</em><em> </em><em>the</em><em> </em><em>4</em><em> </em><em>variables</em><em>.</em><em> </em>

<em>#</em><em>Test</em><em> </em><em>size</em><em> </em><em>is</em><em> </em><em>test</em><em> </em><em>percent</em><em> </em><em>of</em><em> </em><em>the</em><em> </em><em>entire</em><em> </em><em>dataset</em><em> </em>

Learn more :brainly.com/question/4257657?referrer=searchResults

3 0
3 years ago
Using Java..
uysha [10]

Answer:

The source code files for this question have been attached to this response.

Please download it and go through each of the class files.

The codes contain explanatory comments explaining important segments of the codes, kindly go through these comments.

Download java
<span class="sg-text sg-text--link sg-text--bold sg-text--link-disabled sg-text--blue-dark"> java </span>
<span class="sg-text sg-text--link sg-text--bold sg-text--link-disabled sg-text--blue-dark"> java </span>
<span class="sg-text sg-text--link sg-text--bold sg-text--link-disabled sg-text--blue-dark"> java </span>
<span class="sg-text sg-text--link sg-text--bold sg-text--link-disabled sg-text--blue-dark"> java </span>
<span class="sg-text sg-text--link sg-text--bold sg-text--link-disabled sg-text--blue-dark"> java </span>
7 0
3 years ago
Technician A says a solenoid is not used on modern automobiles. Technician B says fuel injectors and starter motor solenoids are
julia-pushkina [17]

Answer:

ON THE BOTTOM

Explanation:

red cord plus black cord

5 0
3 years ago
Other questions:
  • Show from the first principles that, for a perfect gas with constant specific heat capacities
    14·1 answer
  • What Degree Do You Need To Become a Solar Engineer?<br> (2 or more sentences please)
    13·1 answer
  • Question 54 (1 point)
    11·2 answers
  • Part of the following pseudocode is incompatible with the Java, Python, C, and C++ language Identify the problem. How would you
    12·1 answer
  • A debugging process where you, the programmer, pretend you are a computer and step through each statement while recording the va
    12·1 answer
  • Determine the following parameters for the water having quality x=0.7 at 200 kPa:
    8·1 answer
  • El tiempo hasta que falle un sistema informático sigue una distribución Exponencial con media de 600hs. (Utilice 3 decimales par
    13·1 answer
  • Any help is appreciated &lt;3
    14·1 answer
  • What engine or car do you think gets better gas mileage a
    9·1 answer
  • A solid steel shaft ABCDE turns freely in bearings at points A and E. The shaft is driven by the gear at C, which applies a torq
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!