summaryrefslogtreecommitdiff
path: root/2534/CH8/EX8.10
diff options
context:
space:
mode:
Diffstat (limited to '2534/CH8/EX8.10')
-rwxr-xr-x2534/CH8/EX8.10/Ex8_10.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/2534/CH8/EX8.10/Ex8_10.sce b/2534/CH8/EX8.10/Ex8_10.sce
new file mode 100755
index 000000000..9b4491d83
--- /dev/null
+++ b/2534/CH8/EX8.10/Ex8_10.sce
@@ -0,0 +1,13 @@
+//Ex8_10
+clc
+Av = -200
+Ri = 10*10^3
+RL = 3*10^3
+Ai = Av*Ri/RL
+disp("Av = "+string(Av))//voltage gain
+disp("Ri = "+string(Ri)+"ohm")//input resistance
+disp("RL = "+string(RL)+"ohm")//load resistance
+disp("Ai = Av*Ri/RL = "+string(Ai))//current gain
+
+// note : there are mis-printring in the textbook for the above problem regading formula and notations.
+// answer in the textbook for above problem is wrong.