Vo= 331+0.6T
360=331+0.6T
360-331=0.6T
29=0.6T
0.6T/29
T=6/290 so change it to simplest form and us formulas good luck
Answer:
A bird flies 75m in 15s.Calculate its speed
Answer:within the focal length of the lens, provided the focal length is shorter than the near point distance.
Explanation:Hope it helps

The heat capacity is given by the expression:






When the
is measured in the calorimeter, we obtain a value, and since we know the mass of the material and we control the change in
, we can then determine the specific heat "C" by simply remplazing in the expression.
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: