I dont know is your papers main idea stated clearly?
Answer:
True
Explanation:
It could either be true or false because you dont really have to be great at something just to do it, you could try new things too.
Answer:
The surface area of the primary settling tank is 0.0095 m^2.
The effective theoretical detention time is 0.05 s.
Explanation:
The surface area of the tank is calculated by dividing the volumetric flow rate by the overflow rate.
Volumetric flow rate = 0.570 m^3/s
Overflow rate = 60 m/s
Surface area = 0.570 m^3/s ÷ 60 m/s = 0.0095 m^2
Detention time is calculated by dividing the volume of the tank by the its volumetric flow rate
Volume of the tank = surface area × depth = 0.0095 m^2 × 3 m = 0.0285 m^3
Detention time = 0.0285 m^3 ÷ 0.570 m^3/s = 0.05 s
Answer:
There are 2 expected readings greater than 2.70 V
Solution:
As per the question:
Total no. of readings, n = 60 V
Mean of the voltage, 
standard deviation, 
Now, to find the no. of readings greater than 2.70 V, we find:
The probability of the readings less than 2.70 V,
:

Now, from the Probability table of standard normal distribution:

Now,

Now, for the expected no. of readings greater than 2.70 V:

No. of readings expected to be greater than 2.70 V = 
No. of readings expected to be greater than 2.70 V =
≈ 2
Answer:
Area of Circle = 78.5398
Surface Area of Sphere = 1.2566 x 10^3 = 1256.6 ft
Volume of Sphere = 33.5103 ft
Explanation:
Please find below the written MatLab script used to solve the problem. I had to define r in each case to solve for the Area of the circle, the surface area and the volume of the Sphere.
r=5; % define r as 5
a=pi*r^2;% calculate the area of the circle
AreaOfCircle=a
r=10; % define r and 10 ft
sa=4*pi*r^2; %Calculate the surface area of the sphere
SphereSurfaceArea=sa
r=2;% define r as 2 ft
vs=(4/3)*pi*r^3;% Calculate the volume of the sphere
VolumeShere=vs