Answer:
4000J
Explanation:
Given parameters:
Weight of the man = 800N
Height of ladder = 5m
Unknown:
Gravitational potential energy gained = ?
Solution:
The gravitational potential energy is due to the position of a body.
Gravitational potential energy = weight x height
Now insert the parameters;
Gravitational potential energy = 800 x 5 = 4000J
It can’t be b because that will increase the dissolving rate
The vertical height of the given plane is 4.9 m.
The given parameters:
- <em>speed of the object at the bottom of the ramp, v = 9.8 m/s</em>
The vertical height of the plane is calculated by applying principle of conservation of mechanical energy as follows;

Thus, the vertical height of the given plane is 4.9 m.
Learn more about conservation of mechanical energy here: brainly.com/question/332163
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:
Explanation:
what is the question please