The power that must be supplied to the motor is 136 hp
<u>Explanation:</u>
Given-
weight of the elevator, m = 1000 lb
Force on the table, F = 500 lb
Distance, s = 27 ft
Efficiency, ε = 0.65
Power = ?
According to the equation of motion:
F = ma

a = 16.1 ft/s²
We know,

To calculate the output power:
Pout = F. v
Pout = 3 (500) * 29.48
Pout = 44220 lb.ft/s
As efficiency is given and output power is known, we can calculate the input power.
ε = Pout / Pin
0.65 = 44220 / Pin
Pin = 68030.8 lb.ft/s
Pin = 68030.8 / 500 hp
= 136 hp
Therefore, the power that must be supplied to the motor is 136 hp
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<
Same question idea but different values... I hope I helped you... Don't forget to put a heart mark
Answer:
It would take approximately 305 s to go to 99% completion
Explanation:
Given that:
y = 50% = 0.5
n = 1.7
t = 100 s
We need to first find the parameter k from the equation below.

taking the natural logarithm of both sides:

Substituting values:

Also
![t^n=-\frac{ln(1-y)}{k}\\t=\sqrt[n]{-\frac{ln(1-y)}{k}}](https://tex.z-dn.net/?f=t%5En%3D-%5Cfrac%7Bln%281-y%29%7D%7Bk%7D%5C%5Ct%3D%5Csqrt%5Bn%5D%7B-%5Cfrac%7Bln%281-y%29%7D%7Bk%7D%7D)
Substituting values and y = 99% = 0.99
![t=\sqrt[n]{-\frac{ln(1-y)}{k}}=\sqrt[1.7]{-\frac{ln(1-0.99)}{2.76*10^{-4}}}=304.6s](https://tex.z-dn.net/?f=t%3D%5Csqrt%5Bn%5D%7B-%5Cfrac%7Bln%281-y%29%7D%7Bk%7D%7D%3D%5Csqrt%5B1.7%5D%7B-%5Cfrac%7Bln%281-0.99%29%7D%7B2.76%2A10%5E%7B-4%7D%7D%7D%3D304.6s)
∴ t ≅ 305 s
It would take approximately 305 s to go to 99% completion