blob: 99d97f3a3919eb46478784db4f2b41cd0d98c461 (
plain)
1
2
3
4
5
6
7
8
9
10
|
i=10*10^(-3);
r=10*10^3;
v=15;
fsd=0.02;
disp("Part a");
r1=v/(i-v/r);
disp("the resistance (in Ω) is"); disp(r1/1000);
disp("Part b");
e=2*fsd*100;
disp("the maximum possible error (in %) is"); disp(e);
|