Look at the first person’s answer. Cause I know I’m wrong
Which best describes the transition from gas to liquid?
gas is @ higher energy state than liq. so the transition must remove energy. so ans is a. Energy must be removed because particles in liquid move more slowly.
Most of the substances have higher density in solid state. When we heated solids it change its state to liquid. After a few minutes the liquid will boil and after that it will change to gas. Gaseous state of matter has the lowest density. From this we can conclude that density decreases with increase in temperature.
Note the point: Water has higher density in 4℃, at its liquid state
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: