Answer:
Be pushed away from each other.
Explanation:
The book that weighs less
As proton is heavier then electron, and electrostatic force is directly proportional to mass, so it would be greater and direction would be changed 'cause of different charges.
In short, Your Answer would be Option 4
Hope this helps!
Answer:
a) True
b)False
c)False
• Had to complete the question first.
A block slides at constant speed down a ramp while acted on by three forces: its weight, the normal force, and kinetic friction. Respond to each statement, true or false.
(a) The combined net work done by all three forces on the block equals zero.
(b) Each force does zero work on the block as it slides.
(c) Each force does negative work on the block as it slides.
Explanation:
Net work is the change in kinetic energy, which leads to final kinetic energy - our initial kinetic energy this is the formula for net work. This is the working energy theorem, a theorem that states that the net work on an object induces a change in the object's kinetic energy.
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: