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
DochEvi [55]
3 years ago
13

The position of a particle moving along a straight line is defined by the relation. s = t^3 – 6t^2 – 15t + 40, where s is expres

sed in feet and t in seconds. Determine:(a) s when t = 3 seconds.(b) v when t = 5 seconds. (c) a when t = 4 seconds.(d) the time when the velocity is equal to zero. What is important about this information?
Engineering
1 answer:
Y_Kistochka [10]3 years ago
4 0

Answer:

1) s(3) = -32 feet.

2)v(5) = 3 feet/sec

3)a(4) = 12feet/s^{2}

4) Velocity becomes zero at t = 5 seconds

Explanation:

Given that position as a function of time is

s(t)=t^{3}-6t^{2}-15t+40

Now by definition of velocity we have

v=\frac{ds}{dt}\\\\v=\frac{d}{dt}(t^{3}-6t^{2}-15t+40)\\\\\therefore v(t)=3t^{2}-12t-15

Now by definition of acceleration we have

a=\frac{dv}{dt}\\\\a=\frac{d}{dt}(3t^{2}-12t-15)\\\\\therefore a(t)=6t-12

Applying values of time in corresponding equations we get

1) s(3)=3^{3}-6\times (3)^{2}-15\times 3+40=-32feet

2)v(5)=3\times {5}^{2}-12\times 5-15=3feet/sec

3)a(4)=6\times 4-12=12ft/s^{2}

4)To obatin the time at which velocity is zero equate the velocity function with zero we get

3t^{2}-12t-15=0\\\\t^{2}-4t-5=0\\\\t^{2}-5t+t-5=0\\\\t(t-5)+1(t-5)=0\\\\(t-5)(t+1)=0\\\\\therefore t=5\\\\or\\\therefore t=-1

Thus the correct time is 5 seconds at which velocity becomes zero.

You might be interested in
Experimental Design Application Production engineers wish to find the optimal process for etching circuit boards quickly. They c
Veseljchak [2.6K]

Answer:

Hello your question is incomplete attached below is the missing part and answer

options :

Effect A

Effect B

Effect C

Effect D

Effect AB

Effect AC

Effect AD

Effect BC

Effect BD

Effect CD

Answer :

A  = significant

 B  = significant

C  = Non-significant

D  = Non-significant

AB  = Non-significant

AC  = significant

AD  = Non-significant

BC  = Non-significant

 BD  = Non-significant

 CD = Non-significant

Explanation:

The dependent variable here is Time

Effect of A  = significant

Effect of B  = significant

Effect of C  = Non-significant

Effect of D  = Non-significant

Effect of AB  = Non-significant

Effect of AC  = significant

Effect of AD  = Non-significant

Effect of BC  = Non-significant

Effect of BD  = Non-significant

Effect of CD = Non-significant

8 0
3 years ago
C#: Arrays - Ask the user how many students names they want to store. You will create two parallel arrays (e.g. 2 arrays with th
zhenek [66]

Answer:

  1. using System;      
  2. public class Program
  3. {
  4. public static void Main()
  5. {
  6.  Console.WriteLine("Enter number of students: ");
  7.  int num = Convert.ToInt32(Console.ReadLine());
  8.  string [] firstName = new string[num];
  9.  string [] lastName = new string[num];
  10.  
  11.  for(int i=0 ; i < num; i++){
  12.   Console.WriteLine("Enter first name: ");
  13.   firstName[i] = Console.ReadLine();
  14.    
  15.   Console.WriteLine("Enter last name: ");
  16.   lastName[i] = Console.ReadLine();
  17.  }
  18.  
  19.  for(int j=0; j < num; j++){
  20.   Console.WriteLine(lastName[j] + "," + firstName[j]);
  21.  }
  22. }
  23. }

Explanation:

Firstly, prompt user to enter number of student to be stored (Line 6- 7). Next, create two array, firstName and lastName with num size (Line 8-9).

Create a for-loop to repeat for num times and prompt user to enter first name and last name and then store them in the firstName and lastName array, respectively (Line 11 - 17).

Create another for loop to traverse through the lastName and firstName array and display the last name and first name by following the format given in the question (Line 19 - 21).

4 0
3 years ago
(40 points) Program the following sorting algorithms: InsertionSort, MergeSort, and QuickSort. There are 9 test les uploaded for
babunello [35]

Answer:

Explanation:

MERGE SORT

#include<stdlib.h>

#include<stdio.h>

#include<string.h>

void merge(int arr[], int l, int m, int r)

{

int i, j, k;

int n1 = m - l + 1;

int n2 = r - m;

 

int L[n1], R[n2];

for (i = 0; i < n1; i++)

L[i] = arr[l + i];

for (j = 0; j < n2; j++)

R[j] = arr[m + 1+ j];

i = 0;

j = 0;

k = l;

while (i < n1 && j < n2)

{

if (L[i] <= R[j])

{

arr[k] = L[i];

i++;

}

else

{

arr[k] = R[j];

j++;

}

k++;

}

while (i < n1)

{

arr[k] = L[i];

i++;

k++;

}

while (j < n2)

{

arr[k] = R[j];

j++;

k++;

}

}

void mergeSort(int arr[], int l, int r)

{

if (l < r)

{

int m = l+(r-l)/2;

mergeSort(arr, l, m);

mergeSort(arr, m+1, r);

merge(arr, l, m, r);

}

}

void printArray(int A[], int size)

{

int i;

for (i=0; i < size; i++)

printf("%d ", A[i]);

printf("\n");

}

int main()

{

int arr[1000] = {0};

int arr_size =0;

int data;

char file1[20];

strcpy(file1,"data.txt");

FILE *fp;

fp = fopen(file1,"r+");

if (fp == NULL) // if file not opened return error

{

perror("Unable to open file");

return -1;

}

else

{

fscanf (fp, "%d", &data);    

arr[arr_size]=data;

arr_size++;

while (!feof (fp))

{  

fscanf (fp, "%d", &data);  

arr[arr_size]=data;

arr_size++;    

}

}

printf("Given array is \n");

printArray(arr, arr_size);

mergeSort(arr, 0, arr_size - 1);

printf("\nSorted array Using MERGE SORT is \n");

printArray(arr, arr_size);

return 0;

}

3 0
3 years ago
Ensure at least ___ distance around fire sprinkler heads, safety showers, eyewash units, and heating and cooling units to ensure
vampirchik [111]

90 inches

Explanation:

According to OSHA requirement, the distance around safety showers and eyewash should be between 82-96 inches off the flow. This will allow for maximum diameter of spray.

Learn More

Safety distance around safety showers:brainly.com/question/11123362

Keywords: distance, fire sprinkler head, safety showers, eyewash units,heating and cooling units

#LearnwithBrainly

5 0
3 years ago
Consider a fully developed flow in a circular pipe (negligible entrance effects), how does the convective heat transfer coeffici
Alexeev081 [22]

Answer: A)  Gradually decrease

Explanation:

  The convection value of heat transfer rate are gradually decreasing with the flow of the heat. Flow in a circular pipe, flow direction does not change in the velocity path. The average of the coefficient of heat transfer and the number of pipes are needed and the effects are get neglected so that is why the flow are fully developed.

8 0
3 years ago
Other questions:
  • Question Set 22.1 Using the count method, find the number of occurrences of the character 's' in the string 'mississippi'.2.2 In
    10·1 answer
  • A piston-cylinder device contains 0.8 kg of steam at 300°C and 1 MPa. Steam is cooled at constant pressure until one-half of the
    9·1 answer
  • Define ""acidity"" of an aqueous solution. How do you compare the strength of acidity of solutions ?
    6·1 answer
  • A torsional pendulum consists of a 5 kg uniform disk with a diameter of 50 cm attached at its center to a rod 1.5 m in length. T
    13·1 answer
  • 4.10.1: Simon says. "Simon Says" is a memory game where "Simon" outputs a sequence of 10 characters (R, G, B, Y) and the user mu
    10·1 answer
  • Define volume flow rate of air flowing in a duct of area A with average velocity V.
    13·1 answer
  • Simplify the following expressions, then implement them using digital logic gates. (a) f = A + AB + AC (b) f = AB + AC + BC (c)
    5·1 answer
  • Who is father of Engineer?
    9·2 answers
  • What the minimum wire size for a general residential application on a 20 A circuit
    7·1 answer
  • Not all projects that engineers work on will have human factors involved.
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!