Answer:
We can also prove the conservation of mechanical energy of a freely falling body by the work-energy theorem, which states that change in kinetic energy of a body is equal to work done on it. i.e. W=ΔK. And ΔE=ΔK+ΔU. Hence the mechanical energy of the body is conserved
Explanation:
It's a hardness scale from 1-10 determining how easy or hard it is to scratch the mineral.
Remember that talc (like chalk or baby powder) is the softest and easiest to scratch then diamond being 10 is the hardest mineral to scratch or break or cut
Answer:
B. Marginal cost equals long-run average total cost.
Explanation:
The zero profit condition implies that entry continues until all firms are producing at minimum long run average total cost. Since the marginal cost curve cuts the long run average total cost curve at its minimum point, marginal cost and long run average total cost must be equal in long run equilibrium.
Answer:
![125\sqrt[4]{8}](https://tex.z-dn.net/?f=125%5Csqrt%5B4%5D%7B8%7D)
Explanation:
A number of the form

can be re-written in the radical form as follows:
![\sqrt[n]{a^m}](https://tex.z-dn.net/?f=%5Csqrt%5Bn%5D%7Ba%5Em%7D)
In this problem, we have:
a = 1,250
m = 3
n = 4
So, if we apply the formula, we get
![1,250^{\frac{3}{4}}=\sqrt[4]{(1,250)^3}](https://tex.z-dn.net/?f=1%2C250%5E%7B%5Cfrac%7B3%7D%7B4%7D%7D%3D%5Csqrt%5B4%5D%7B%281%2C250%29%5E3%7D)
Then, we can rewrite 1250 as

So we can rewrite the expression as
![=\sqrt[4]{(2\cdot 5^4)^3}=5^3 \sqrt[4]{2^3}=125\sqrt[4]{8}](https://tex.z-dn.net/?f=%3D%5Csqrt%5B4%5D%7B%282%5Ccdot%205%5E4%29%5E3%7D%3D5%5E3%20%5Csqrt%5B4%5D%7B2%5E3%7D%3D125%5Csqrt%5B4%5D%7B8%7D)
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: