Answer:
75 m
Explanation:
The horizontal motion of the projectile is a uniform motion with constant speed, since there are no forces acting along the horizontal direction (if we neglect air resistance), so the horizontal acceleration is zero.
The horizontal component of the velocity of the projectile is

and it is constant during the motion;
the total time of flight is
t = 5 s
Therefore, we can apply the formula of the uniform motion to find the horizontal displacement of the projectile:

Answer:
a= 4.4×10 m/s^2
Explanation:
pressure P = E/c
Where, E = 100 W/m^2 intensity of light
c= speed of light = 3×10^8 m/s
P = 1000/ 3×10^8
P = 3.33×10^(-6) Pa
Force F = P×A
- P is the pressure and c= speed of light
F = 3.33×10^{-6}×6.65×10(-29)
= 2.22×10^{-6}
acceleration a = F/m = 2.22×10^{-6}/ 5.10×10^{-27}
a= 4.4×10 m/s^2
Answer:
D. 24 lb
Explanation:
Tina has been dieting for 13 weeks
First week she lost 3 pounds
Next week she gained 1 pound and did not lose any. This will be subtracted as she has gained a pound
The remaining 11 weeks she lost 2 pounds per week
Weight lost in the 11 weeks = 11×2 =22 pounds
Total weight lost
3-1+22 = 24 lb
Tina has lost 24 pounds in total during the 13 weeks
Answer:
F = 2.69 10⁻³ m [ N]
Explanation:
This exercise asks to calculate the gravitational field of the Earth on the lunar surface, let's use the universal gravitation law
F = G m M / r²
where m is the mass of the body, M the mass of the Earth and r the distance between the Earth and the Moon
F = (G M / r²) m
F = (6.67 10⁻¹¹ 5.98 10²⁴ / (3.85 10⁸)² ) m
F = 2.69 10⁻³ m [ N]
This force is directed from the Moon towards the Earth, therefore it reduces the weight of the body
Answer:
clc
clear all
close all
format long
A=load('xyg1.mat');
x=A(:,1);
y=A(:,2);
[z,N,R2]=polyfitsystem(x,y,0.95)
function [z,N,R2]=polyfitsystem(x,y,R2)
for N=1:20
z=polyfit(x,y,N);
SSR=sum((y-polyval(z,x)).^2);
SST=sum((y-mean(y)).^2);
s=1-SSR/SST;
if(s>=R2)
R2=s;
break;
end
end
xx=linspace(min(x),max(x));
plot(x,y,'o',xx,polyval(z,x));
xlabel('x');
ylabel('y(x)');
title('Plot of y vs x');
end
Explanation: