From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3637/CH2/EX2.16/Ex2_16.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 3637/CH2/EX2.16/Ex2_16.sce (limited to '3637/CH2/EX2.16/Ex2_16.sce') diff --git a/3637/CH2/EX2.16/Ex2_16.sce b/3637/CH2/EX2.16/Ex2_16.sce new file mode 100644 index 000000000..12724dd85 --- /dev/null +++ b/3637/CH2/EX2.16/Ex2_16.sce @@ -0,0 +1,19 @@ +//problem 16 pagenumber 2.99 +//given +f1=500;//hz +f2=2.2e3;//hz +a=5; +c=0.1e-6;//farad +rf1=10e3;//ohm +//determine r1 r2 +R1=1/(2*3.14*f1*c); +R2=1/(2*3.14*f2*c); +Ri=2e3;//ohm assuming +Rf=(a-1)*Ri;format(6); +disp('R = '+string(R1/10^3)+' Kohm'); +disp('R2 = '+string(R2/10^3)+' Kohm');//error in book +disp('R1 = '+string(Ri/10^3)+' Kohm'); +disp('Rf = '+string(Rf/10^3)+' Kohm'); + + + -- cgit