Answer:
The amplitude of the absorbed mass can be found
for ka:

now
![w^2=\frac{K_{a} }{m_{a} } \\m_{a} =\frac{K_{a} }{w^2} =\frac{125000}{[6000*2\pi /60]^2} =0.317kg](https://tex.z-dn.net/?f=w%5E2%3D%5Cfrac%7BK_%7Ba%7D%20%7D%7Bm_%7Ba%7D%20%7D%20%5C%5Cm_%7Ba%7D%20%3D%5Cfrac%7BK_%7Ba%7D%20%7D%7Bw%5E2%7D%20%3D%5Cfrac%7B125000%7D%7B%5B6000%2A2%5Cpi%20%2F60%5D%5E2%7D%20%3D0.317kg)
The height at which the mass will be lifted is; 3 meters
<h3>How to utilize efficiency of a machine?</h3>
Formula for efficiency is;
η = useful output energy/input energy
We are given
η = 60% = 0.6
Input energy = 4 KJ = 4000 J
Thus;
0.6 = useful output energy/4000
useful output energy = 0.6 * 4000
useful output energy = 2400 J
Work done in lifting mass(useful output energy) = force * distance moved
Useful output energy = 800 * h
where h is height to lift mass
Thus;
800h = 2400
h = 2400/800
h = 3 meters
Read more about Machine Efficiency at; brainly.com/question/3617034
#SPJ1
Answer:
Speed of aircraft ; (V_1) = 83.9 m/s
Explanation:
The height at which aircraft is flying = 3000 m
The differential pressure = 3200 N/m²
From the table i attached, the density of air at 3000 m altitude is; ρ = 0.909 kg/m3
Now, we will solve this question under the assumption that the air flow is steady, incompressible and irrotational with negligible frictional and wind effects.
Thus, let's apply the Bernoulli equation :
P1/ρg + (V_1)²/2g + z1 = P2/ρg + (V_2)²/2g + z2
Now, neglecting head difference due to high altitude i.e ( z1=z2 ) and V2 =0 at stagnation point.
We'll obtain ;
P1/ρg + (V_1)²/2g = P2/ρg
Let's make V_1 the subject;
(V_1)² = 2(P1 - P2)/ρ
(V_1) = √(2(P1 - P2)/ρ)
P1 - P2 is the differential pressure and has a value of 3200 N/m² from the question
Thus,
(V_1) = √(2 x 3200)/0.909)
(V_1) = 83.9 m/s
Using the knowledge of computational language in python it is possible to write a code that writes a list and defines the arrange.
<h3>Writing code in python:</h3>
<em>def isSorted(lyst):</em>
<em>if len(lyst) >= 0 and len(lyst) < 2:</em>
<em>return True</em>
<em>else:</em>
<em>for i in range(len(lyst)-1):</em>
<em>if lyst[i] > lyst[i+1]:</em>
<em>return False</em>
<em>return True</em>
<em>def main():</em>
<em>lyst = []</em>
<em>print(isSorted(lyst))</em>
<em>lyst = [1]</em>
<em>print(isSorted(lyst))</em>
<em>lyst = list(range(10))</em>
<em>print(isSorted(lyst))</em>
<em>lyst[9] = 3</em>
<em>print(isSorted(lyst))</em>
<em>main()</em>
See more about python at brainly.com/question/18502436
#SPJ1