The light will bend when in
Answer:
± (.021 ) ohm
Explanation:
In the addition of two physical quantities , the uncertainties are simply added .
So , net uncertainty in the value of R will be
± (.007 +.014)
=± (.021 ) ohm
The velocity of the combination of Jackie and the bicycle is 3.328 m/s.
Explanation:
From the given data the constant kinetic energy is 3.6 J. The mass of combination is 0.65 kg. To find the velocity of the combination of Jackie and the bicycle the formula is
KE = 0.5 x mv2.
To find velocity,
V2=ke/(0.5×m)
V=
v= 3.6/(0.5×0.65)
=
v= 3.328 m/s
Hence, the velocity of the combination of Jackie and the bicycle is 3.328m/s.
Answer:
Explanation:
Force between two charges of q₁ and q₂ at distance d is given by the expression
F = k q₁ q₂ / d₂
Here force between charge q₁ = - 15 x 10⁻⁹ C and q₃ = 47 x 10⁻⁹ C when distance between them d = (1.66 - 1.24 ) = .42 mm
k = 1/ 4π x 8.85 x 10⁻¹²
putting the values in the expression
F = 1/ 4π x 8.85 x 10⁻¹² x - 15 x 10⁻⁹ x 47 x 10⁻⁹ /( .42 x 10⁻³)²
= 9 x 10⁹ x - 15 x 10⁻⁹ x 47 x 10⁻⁹ /( .42 x 10⁻³)²
= 35969.4 x 10⁻³ N .
force between charge q₂ = 34.5 x 10⁻⁹ C and q₃ = 47 x 10⁻⁹ C when distance between them d = ( 1.24 - 0 ) = 1.24 mm .
putting the values in the expression
F = 1/ 4π x 8.85 x 10⁻¹² x 34.5 x 10⁻⁹ x 47 x 10⁻⁹ /( .42 x 10⁻³)²
= 9 x 10⁹ x - 34.5 x 10⁻⁹ x 47 x 10⁻⁹ /( .42 x 10⁻³)²
= 82729.6 x 10⁻³ N
Both these forces will act in the same direction towards the left (away from the origin towards - ve x axis)
Total force = 118699 x 10⁻³
= 118.7 N.
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: