Answer:
31.32 m/s
Explanation:
t = Time taken
u = Initial velocity
v = Final velocity
s = Displacement
a = Acceleration due to gravity = 9.81 m/s²
Let us assume the height of the Disque hall is 50 m

In order to make the jump Superman's initial velocity must be greater than or equal to 31.32 m/s
Momentum is a property of moving objects but not stationary objects. You can see this in the formula because momentum equals mass times velocity squared (p=m*v^2). You would not have momentum if you didn't have velocity. Stationary objects have potential energy, and things with potential energy do not have velocity. This is why momentum is a property of moving objects but not of stationary objects.
Answer:
R / 64
Explanation:
Let he length of the wire is L and its resistance is R.
The resistance of the wire is directly proportional to the length of the wire. As the wire is cut into 8 equal pieces so the resistance of small wire is R/8.
Now they are connected in parallel.
The equivalent resistance is given by


Thus, the equivalent resistance of the new cable is R / 64.
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: