-
Notifications
You must be signed in to change notification settings - Fork 30
/
Chapter1.tex
997 lines (890 loc) · 54.3 KB
/
Chapter1.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
\chapter{Solutions for Chapter 1}
\ex{1.1}
\begin{enumerate}
\item
$R = \SI{5}{\kohm} + \SI{10}{\kohm} = \mans{\SI{15}{\kohm}}$
\item
$R = \dfrac{R_1 R_2}{R_1 + R_2} = \dfrac{\SI{5}{\kohm} \times \SI{10}{\kohm}}{\SI{5}{\kohm} + \SI{10}{\kohm}} = \mans{\SI{3.33}{\kohm}}$
\end{enumerate}
\ex{1.2}
$P = IV = \left(\dfrac{V}{R}\right)V = \dfrac{(\SI{12}{\V})^2}{\SI{1}{\ohm}} = \mans{\SI{144}{\W}}$
\ex{1.3}
Consider a simple series resistor circuit.
\begin{circuit}{fig:1.3.1}{A basic series circuit.}
(0,0) to[V=$V$,invert] (0,4)
to[short,i=$I$] (2,4)
to[R=$R_1$,v=$V_{1}$] (2,2)
to[R=$R_2$,v=$V_{2}$] (2,0)
to (0,0)
\end{circuit}
By KVL and Ohm's law \[ V = V_{1} + V_{2} = R_{1}\cdot I + R_{2} \cdot I = (R_{1}+R_{2}) \cdot I = R \cdot I \]
where \[\mans{R = R_{1} + R_{2}}\] is the resistance of $R_{1}$ and $R_{2}$ in series. Now, consider a simple parallel resistor circuit.
\begin{circuit}{fig:1.3.2}{A basic parallel circuit.}
(0,0) to[V=$V$,invert] (0,3)
to[short,i=$I$] (2,3)
to[R=$R_1$,i>^=$I_{1}$] (2,0);
\draw (2,3) to[short] (4,3)
to[R=$R_2$,i>^=$I_{2}$] (4,0)
to (0,0)
\end{circuit}
By KCL and Ohm's law \[ I = I_{1} + I_{2} = \frac{V}{R_{1}} + \frac{V}{R_{2}} = \left(\frac{1}{R_{1}}+\frac{1}{R_{2}}\right)\cdot V \]
solving for V as a function of I we get
\[V = \dfrac{1}{\frac{1}{R_{1}}+\frac{1}{R_{2}}}\cdot I = \frac{R_{1}R_{2}}{R_{1}+R_{2}}\cdot I = R\cdot I \]
where \[\mans{R = \dfrac{1}{\frac{1}{R_{1}}+\frac{1}{R_{2}}} = \frac{R_{1}R_{2}}{R_{1}+R_{2}}}\] is the resistance of $R_{1}$ and $R_{2}$ in parallel.
\ex{1.4}
We known that the resistance $R_{12}$\footnote{Here we have only assigned a name to the resistance in parallel between $R_{1}$ and $R_{2}$.} of two resistors $R_{1}$ and $R_{2}$ in parallel is given by \[R_{12} = \dfrac{1}{\frac{1}{R_{1}}+\frac{1}{R_{2}}}\]
Now, the resistance $R_{123}$ of three resistors $R_{1}$, $R_{2}$ and $R_{3}$ in parallel is equal to the resistance of two resistors $R_{12}$ (the resistance between $R_{1}$ and $R_{2}$ in parallel) and $R_{3}$ in parallel, then \[R_{123} = \frac{1}{\frac{1}{R_{12}}+\frac{1}{R_{3}}} = \frac{1}{\frac{1}{R_{1}}+\frac{1}{R_{2}}+\frac{1}{R_{3}}}\]
We will prove by induction that the resistance $R_{1\cdots n}$ of $n$ resistances $R_{1}, R_{2}, \ldots, R_{n}$ in parallel is given by \[R_{1\cdots n} = \dfrac{1}{\sum_{i=1}^{n}\frac{1}{R_{i}}}\]
First, it's trivial to show that with $n = 1$ the equality holds. Now, we will assume that the equality is satisfied for $n = k$, that is
\[R_{1\cdots k} = \dfrac{1}{\sum_{i=1}^{k}\frac{1}{R_{i}}}\]
Then, we must show that equality holds for $n = k+1$. Thus, the resistance $R_{1\cdots (k+1)}$ of $(k+1)$ resistances $R_{1}, R_{2}, \ldots, R_{k+1}$ in parallel is equal to the resistance of two resistors $R_{1\cdots k}$ and $R_{k+1}$ in parallel, then \[R_{1\cdots (k+1)} = \frac{1}{\frac{1}{R_{1\cdots k}}+\frac{1}{R_{k+1}}} = \frac{1}{\sum_{i=1}^{k}\frac{1}{R_{i}}+\frac{1}{R_{k+1}}} = \frac{1}{\sum_{i=1}^{k+1}\frac{1}{R_{i}}}\]
where we have proved that equality holds for $n = k+1$. Finally, the resistance of $n$ resistors in parallel is given by \[\mans{R_{1\cdots n} = \dfrac{1}{\sum_{i=1}^{n}\frac{1}{R_{i}}} = \frac{1}{\frac{1}{R_{1}}+\frac{1}{R_{2}}+\ldots+\frac{1}{R_{n}}}}\]
\ex{1.5}
Given that $P = \dfrac{V^2}{R}$, we know that the maximum voltage we can achieve is \SI{15}{\V} and the smallest resistance we can have across the resistor in question is \SI{1}{\kohm}. Therefore, the maximum amount of power dissipated can be given by \[P = \frac{V^2}{R} = \frac{(\SI{15}{\V})^2}{\SI{1}{\kohm}} = \mans{\SI{0.225}{\W}}\]
This is less than the \SI{0.25}{\W} power rating.
\ex{1.6}
\begin{enumerate}
\item
The total current required by New York City that will flow through the
cable is
\[I = \frac{P}{V} = \frac{\SI{1e10}{\W}}{\SI{115}{\V}} = \SI{86.96}{\mega\A}\]
Therefore, the total power lost per foot of cable can be calculated by:
\[P = I^2R = \left(\SI{86.96e6}{\A}\right)^2 \times \left(\SI{5e-8}{\ohm\per ft}\right) = \mans{\SI{3.78e8}{\W\per ft}}\]
\item
The length of cable over which all $\SI{1e10}{\W}$ will be lost is:
\[L = \frac{\SI{1e10}{\W}}{\SI{3.78e8}{\W\per ft}} = \mans{\SI{26.45}{ft}}\]
\item
To calculate the heat dissipated by the cable, we can use the Stefan-Boltzmann equation $T = \sqrt[4]{\frac{P}{A\sigma}}$, with A corresponding to the cylindrical surface area of the \SI{26.45}{ft} section of 1-foot diameter cable. Note that $\sigma$ is given in \si{\cm^2}, so we will need to use consistent units.
\[A = \pi DL = \pi \times \SI{30.48}{\cm}\times \SI{806.196}{\cm} = \SI{7.72e4}{\cm^2}\]
Therefore,
\[T = \sqrt[4]{\frac{P}{A\sigma}} = \sqrt[4]{\frac{\SI{1e10}{\W}}{\SI{7.72e4}{\cm^2} \times \SI{6e-12}{\W\per\kelvin^4\per\cm^2}}} = \mans{\SI{12121}{K}} \]
This is indeed a preposterous temperature, more than twice that at the surface of the Sun! The solution to this problem is that power should be transmitted along long distances at high voltage. This greatly reduces $I^2R$ losses. For example, a typical high voltage line voltage is $\SI{115}{\kV}$. At this voltage, the power loss per foot of cable is only \SI{378}{\W} per foot. Intuitively, we know that reducing current allows for lower power dissipation. We can deliver the same amount of power with a lower current by using a higher voltage.
\end{enumerate}
\ex{1.7}
A \SI{20000}{\ohm\per\V} meter read, on its \SI{1}{\V} scale, puts a $\SI{20000}{\ohm\per\V} \cdot \SI{1}{\V} = \SI{20000}{\ohm} = \SI{20}{\kohm}$ resistor in series with an ideal ammeter (ampere meter). Also, a voltage source with an internal resistance is equivalent to an ideal voltage source with its internal resistance in series.
\begin{enumerate}
\item In the first question, we have the following circuit:
\begin{circuit}{fig:1.7.1}{A voltage source with internal resistance and a \SI{20000}{\ohm\per\V} meter read in its \SI{1}{\V} scale.}
(0,0) to[V=\SI{1}{\V},invert] (0,4)
to[R=\SI{10}{\kohm},i>^=$I$] (5,4);
\draw[blue] (5,4) to[R=\SI{20}{\kohm},*-,color=blue] (5,2)
to node[draw,circle,fill=white] {A} (5,0);
\draw[blue] node[draw,circle,fill=blue,inner sep=1pt] at(5,0) {};
\draw (5,0) to (0,0)
\end{circuit}
Then, we have that the current in the ideal ammeter and the voltage in the meter resistance are given by\footnote{When a meter only measures currents, it puts a resistance in series to measures the current through that resistance and internally converts that current into voltage to \textit{measure voltages}.}
\[I = \frac{\SI{1}{\V}}{\SI{10}{\kohm} + \SI{20}{\kohm}} = \mans{\SI{0.0333}{\mA}} \quad \text{ and } \quad V = \SI{0.0333}{\mA} \times \SI{20}{\kohm} = \mans{\SI{0.666}{\V}}\]
\item In the second question, we have the following circuit:
\begin{circuit}{fig:1.7.2}{A $\SI{10}{\kohm}-\SI{10}{\kohm}$ voltage divider and a $\SI{20000}{\ohm\per\V}$ meter read in its $\SI{1}{\V}$ scale.}
(0,0) to[V=$\SI{1}{\V}$,invert] (0,4)
to[short] (3,4)
to[R=$\SI{10}{\kohm}$] (3,2)
to[R=$\SI{10}{\kohm}$] (3,0);
\draw[blue] (3,2) to node[draw,circle,fill=white] {A} (5,2)
to[R=$\SI{20}{\kohm}$,color=blue] (5,0)
to[short,-*,color=blue] (3,0);
\draw[blue] node[draw,circle,fill=blue,inner sep=1pt] at(3,2) {};
\draw (3,0) to (0,0)
\end{circuit}
Now, we can to obtain the Thévenin equivalent circuit of circuit in Figure \ref{fig:1.7.2} with
\[R_{\Th} = \frac{\SI{10}{\kohm} \cdot \SI{10}{\kohm}}{\SI{10}{\kohm} + \SI{10}{\kohm}} = \SI{5}{\kohm}\]
and
\[V_{\Th} = \SI{1}{\V} \cdot \frac{\SI{10}{\kohm}}{\SI{10}{\kohm} + \SI{10}{\kohm}} = \SI{0.5}{\V}\]
Then, we have the following equivalent circuit:
\begin{circuit}{fig:1.7.3}{Thévenin equivalent circuit of circuit in Figure \ref{fig:1.7.2}.}
(0,0) to[V=$V_{\Th}$,invert] (0,4)
to[R=$R_{\Th}$,i>^=$I$] (5,4);
\draw node[draw,circle,fill=blue,inner sep=1pt] at(5,4) {};
\draw[blue] (5,4)
to node[draw,circle,fill=white] {A} (5,2)
to[R=$\SI{20}{\kohm}$,-*,color=blue] (5,0);
\draw (5,0) to (0,0)
\end{circuit}
Finally, we have that the current in the ideal ammeter and the voltage in the meter resistance are given by
\[I = \frac{\SI{0.5}{\V}}{\SI{5}{\kohm} + \SI{20}{\kohm}} = \mans{\SI{0.02}{\mA}} \quad \text{ and } \quad V = \SI{0.02}{\mA} \cdot \SI{20}{\kohm} = \mans{\SI{0.4}{\V}}\]
\end{enumerate}
\ex{1.8}
\begin{enumerate}
\item In the first part, we have the following circuit:
\begin{circuit}{fig:1.8.1}{\SI{50}{\uA} ammeter with \SI{5}{\kohm} internal
resistance (shown in blue) in parallel with shunt resistor.}
(0,0) to[isource, l=$I$, -*] (0,2)
(0,2) to[short] (0,3);
\draw[blue]
(0,2) to[R=\SI{5}{\kohm}, i>^=$I_m$, color=blue] (4,2)
(4,2) to node[draw, circle, fill=white] {A} (6,2);
\draw
(0,3) to[R=$R_s$, i>^=$I_s$] (6,3)
(6,3) to[short, -*] (6,2)
(6,2) to[short] (6,0)
(6,0) to[short] (0,0)
\end{circuit}
We want to measure $I$ for 0-1 A, and the ideal ammeter measures
up to \SI{50}{\uA}. To find what shunt resistance $R_s$ allows us to do so,
we set $I = \SI{1}{\A}$ and $I_m = \SI{50}{\uA}$. By KCL we know $I_s = \SI{0.999950}{\A}$.
To determine $R_s$, we still need to find the voltage across it. We can
find this voltage by doing
\[V = I_m R_m = \SI{50}{\uA} \cdot \SI{5}{\kohm} = \SI{0.25}{\V}\]
Then we simply do
\[R_s = \frac{V}{I_s} = \frac{\SI{0.25}{\V}}{\SI{0.999950}{\A}} = \mans{\SI{0.25}{\ohm}}\]
\item In the second part, we have the following circuit:
\begin{circuit}{fig:1.8.2}{\SI{50}{\uA} ammeter with \SI{5}{\kohm} internal
resistance (shown in blue) with a series resistor.}
(0,0) to[V=$V$, invert, i^>=$I$] (0,2);
\draw[blue]
(0,2) to[R=\SI{5}{\kohm}, color=blue] (2,2)
(2,2) to node[draw, circle, fill=white] {A} (4,2);
\draw
(4,2) to[R=$R_s$] (4,0)
(4,0) to[short] (0,0)
\end{circuit}
We want to measure $V$ for 0-10 V, and the ideal ammeter measures up to
\SI{50}{\uA}. To find the series resistance $R_s$, we set $V = \SI{10}{\V}$ and
$I = \SI{50}{\uA}$. Then we solve
\[\frac{V}{I} = \SI{5}{\kohm} + R_s\]
\[R_s = \frac{\SI{10}{\V}}{\SI{50}{\uA}} - \SI{5}{\kohm} = \mans{\SI{195}{\kohm}}\]
\end{enumerate}
\ex{1.9}
In order to measure resistance well above the range of your multimeter, you need to get creative. We will be using the multimeter in voltmeter mode. Lets start by connecting our DC voltage source, voltmeter, and the high-value resistor in series. (The reason for doing this will become clear later).
\begin{circuit}{fig:1.9.1}{Connection of three components.}
(0,2) to[V=$V_{\in}$] (0,0)
(0,2) to[qvprobe=voltmeter] (4,2)
(4,2) to[R=$R_L$] (4,0)
(4,0) to[short] (0,0)
\end{circuit}
$V_{\in}$ is our test voltage, and $R_L$ is our leakage resistance. We need to revise the model for our voltmeter.
\begin{circuit}{fig:1.9.2}{The voltmeter is now modeled as a resistor with value $R_M$.}
(0,2) to[V=$V_{\in}$] (0,0)
(0,2) to[short, i>^=$I_{\in}$] (1,2)
(1,2) to[R=$R_M$, i>_=$I_M$] (3,2)
(3,2) to[short] (4,2)
(4,2) to[R=$R_L$, i>_=$I_L$] (4,0)
(4,0) to[short] (0,0)
\end{circuit}
The current flowing through our meter (modeled by the resistor $R_M$) is equal to the current flowing through the leakage resistor. This is also equal to the current supplied from our voltage source.
\[I_M = I_L = I_{\in}\]
\begin{circuit}{fig:1.9.3}{Voltage and current labels are added.}
(0,2) to[V=$V_{\in}$] (0,0)
(0,2) to[short, i>^=$I_{\in}$] (1,2)
(1,2) to[R=$R_M$, v_>=$V_M$] (3,2)
(3,2) to[short] (4,2)
(4,2) to[R=$R_L$, v_>=$V_L$] (4,0)
(4,0) to[short] (0,0)
\end{circuit}
Notice: this test circuit is a \textbf{voltage divider}. When you use this technique, the voltmeter itself makes up half of the divider. The voltage across the leakage resistor cannot be measured directly, so we calculate it using Kirchhoff's Voltage Law by subtracting our voltmeter's reading from the voltage of our DC supply.
\[V_L = V_{\in} - V_M\]
The current through the voltmeter's resistance is given by Ohm's Law.
\[I_M = \frac{V_M}{R_M}\]
The current through the leakage resistor is given by Ohm's Law.
\[I_L = \frac{V_L}{R_L}\]
We already determined that $I_M$ and $I_L$ are equal, so we can set the two previous expressions equal to each other.
\[I_M = I_L \Rightarrow \frac{V_M}{R_M} = \frac{V_L}{R_L}\]
We will rearrange the above equation to give an expression for $R_L$.
\[R_L = R_M \frac{V_L}{V_M}\]
Now we can substitute our first expression for $V_L$ into the previous equation to eliminate $V_M$ (the final unknown term).
\[R_L = R_M \frac{V_{\in} - V_M}{V_M}\]
Rewriting the equation, the final result is
\[\mans{R_L = R_M \left(\frac{V_{\in}}{V_M} - 1\right)}\]
To measure leakage current with a voltmeter, simply divide the meter's reading by the resistance of the meter. For example, if your \SI{10}{\Mohm} voltmeter measures \SI{0.023}{\V}, then $I_{leakage} = \SI{23}{\mV} / \SI{10}{\Mohm} = \SI{2.3}{\nA}$. The accuracy of such a measurement depends both on the accuracy of the voltage measurement, and the tolerance of the meter's resistance.
\ex{1.10}
\begin{enumerate}
\item
With two equal-value resistors, the output voltage is half the input voltage.
\[V_\out = \frac{1}{2}V_\in = \frac{\SI{30}{\V}}{2} = \mans{\SI{15}{\V}}\]
\item
To treat $R_2$ and $R_{\load}$ as a single resistor, combine the two resistors which are in parallel to find that the combined (equivalent) resistance is \SI{5}{\kohm}. Now, we have a simple voltage divider with a \SI{10}{\kohm} resistor in series with the \SI{5}{\kohm} equivalent resistor. The output voltage is across this equivalent resistance. The output voltage is given by
\[V_\out = V_{\in} \frac{\SI{5}{\kohm}}{\SI{10}{\kohm} + \SI{5}{\kohm}} = \frac{\SI{30}{\V}}{3} = \mans{\SI{10}{\V}} \]
\begin{circuit}{fig:1.10.1}{Voltage divider with simplified equivalent resistance}
% \label{1.10fig1}
(0,2) to[V=$V_{\in}$] (0,0)
to[short] (2,0)
to[R=$R_{eq}$] (2,2)
to[R=$R_1$](0,2)
(2,0) to[short, *-o] (3,0)
(2,2) to[short, *-o] (3,2)
(3,0) to[open, v_<=$V_\out$] (3,2)
\end{circuit}
\item
We can redraw the voltage divider circuit to make the ``port'' clearer.
\begin{circuit}{fig:1.10.2}{Voltage divider with port shown.}
% \label{1.10fig1}
(0,2) to[V=$V_\in$] (0,0)
to[short] (2,0)
to[R=$R_2$] (2,2)
to[R=$R_1$](0,2)
(2,0) to[short, *-o] (3,0)
(2,2) to[short, *-o] (3,2)
(3,0) to[open, v_<=$V_\out$] (3,2)
\end{circuit}
We can find $V_\Th$ by leaving the ports open (open circuit) and measuring $V_\out$, the voltage across $R_2$. This comes out to be half the input voltage when $R_1 = R_2$, so $V_\out = \SI{15}{\V}$. Thus $V_{\Th} = \mans{\SI{15}{\V}}$.
To find the Th\'evinen resistance, we need to find the short circuit current, $I_{SC}$. We short circuit the port and measure the current flowing through it.
\begin{circuit}{fig:1.10.3}{Voltage divider with short circuit on the output.}
(0,2) to[V=$V_\in$] (0,0)
to[short] (2,0)
to[R=$R_2$] (2,2)
to[R=$R_1$](0,2)
(2,0) to[short] (3,0)
(2,2) to[short] (3,2)
(3,0) to[short, i_<=$I_{SC}$] (3,2)
\end{circuit}
In this circuit, no current flows through $R_2$, flowing through the short instead. Thus we have $I_{SC} = \dfrac{V_\in }{R_1}$. From this, we can find $R_\Th$ from $R_\Th = \dfrac{V_\Th}{I_{SC}}$. This gives us
\[R_\Th = \frac{V_\Th}{I_{SC}} = \frac{V_\Th}{V_\in/R_1} = \frac{\SI{15}{\V}}{\SI{30}{\V}/\SI{10}{\kohm}} = \mans{\SI{5}{\kohm}}\]
The Th\'evenin equivalent circuit takes the form shown below.
\begin{circuit}{fig:1.10.4}{Th\'evenin equivalent circuit.}
(0,2) to[V=$V_\Th$] (0,0)
to[short, -o] (3,0)
(0,2) to[R=$R_\Th$, -o] (3,2)
(3,0) to[open, v_<=$V_\out$] (3,2)
\end{circuit}
In terms of behavior at the ports, this circuit is equivalent to the circuit in Figure \ref{fig:1.10.1}.
\item
We connect the $\SI{10}{\kohm}$ load to the port of the Th\'evenin equivalent circuit in Figure \ref{fig:1.10.4} to get the following circuit.
\begin{circuit}{fig:1.10.5}{Th\'evenin equivalent circuit with $\SI{10}{\kohm}$ load.}
(0,2) to[V=$V_{\Th}$] (0,0)
to[short] (3,0)
(0,2) to[R=$R_{\Th}$] (3,2)
(3,0) to[R=$\SI{10}{\kohm}$, v_<=$V_\out$] (3,2)
\end{circuit}
From here, we can find $V_\out$, treating this circuit as a voltage divider.
\[V_\out = \frac{\SI{10}{\kohm}}{R_\Th + \SI{10}{\kohm}} V_\Th = \frac{\SI{10}{\kohm}}{\SI{5}{\kohm} + \SI{10}{\kohm}} \cdot \SI{15}{\V} = \mans{\SI{10}{\V}}\]
This is the same answer we got in part (b).
\item
To find the power dissipated in each resistor, we return to the original three-resistor circuit.
\begin{circuit}{fig:1.10.6}{Original voltage divider with $\SI{10}{\kohm}$ load attached.}
(0,2) to[V, l_=$V_\in$] (0,0)
to[short] (3,0)
to[R, l_=$R_\load$] (3,2)
to[short] (2,2)
to[R=$R_1$] (0,2)
(2,0) to[R=$R_2$, *-*] (2,2)
\end{circuit}
From part (d), we know that the output voltage is 10V and that this is the voltage across the load resistor. Since $P = IV = \frac{V^2}{R}$, we find that the power through $R_\load$ is
\[P_\load = \frac{V^2}{R_\load} = \frac{(\SI{10}{\V})^2}{\SI{10}{\kohm}} = \mans{\SI{10}{\mW}}\]
Similarly, we know that the power across $R_2$ is the same since the voltage across $R_2$ is the same as the voltage across $R_\load$. Thus we have
\[P_2 = \mans{\SI{10}{\mW}}\]
To find the power dissipated in $R_1$, we first have to find the voltage across it. From Kirchoff's loop rule, we know that the voltage around any closed loop in the circuit must be zero. We can choose the loop going through the voltage source, $R_1$, and $R_2$. The voltage supplied by the source is 30V. The voltage dropped across $R_2$ is 10V as discussed before. Thus the voltage dropped across $R_1$ must be $\SI{30}{\V} - \SI{10}{\V} = \SI{20}{\V}$. Now we know the voltage across and the resistance of $R_1$. We use the same formula as before to find the power dissipated.
\[P_1 = \frac{V^2}{R_1} = \frac{(\SI{20}{\V})^2}{\SI{10}{\kohm}} = \mans{\SI{40}{\mW}}\]
\end{enumerate}
\ex{1.11}
Consider the following Th\'evenin circuit where $R_\source$ is just another name for the Th\'evenin resistance, $R_\Th$.
\begin{circuit}{fig:1.11.1}{Standard Th\'evenin circuit with attached load.}
(0,2) to[V, l_=$V_\Th$] (0,0)
to[short] (2,0)
to[R, l_=$R_\load$] (2,2)
to[R, l_=$R_\source$] (0,2)
\end{circuit}
We will first calculate the power dissipated in the load and then maximize it with calculus. We can find the power through a resistor using current and resistence since $P = IV = I(IR) = I^2R$. To find the total current flowing through the resistors, we find the equivalent resistance which is $R_\source + R_\load$. Thus the total current flowing is $I = \dfrac{V_\Th}{R_\source + R_\load}$. The power dissipated in $R_\load$ is thus
\[P_\load = I^2R_\load = \dfrac{V_\Th^2 R_\load}{(R_\source + R_\load)^2}\]
To maximize this function, we take the derivative and set it equal to 0.
\begin{align*}
\frac{dP_\load}{dR_\load} &= V_\Th \frac{(R_\source + R_\load)^2 - 2R_\load(R_\source + R_\load)}{(R_\source + R_\load)^4} = 0 \\
&\Longrightarrow R_\source + R_\load = 2R_\load \\
&\Longrightarrow R_\source = R_\load
\end{align*}
\ex{1.12}
\begin{enumerate}
\item
Voltage ratio: $\frac{V_2}{V_1} = 10^{\si{\dB}/20} = 10^{3/20} = \mans{1.413}$
Power ratio: $\frac{P_2}{P_1} = 10^{\si{\dB}/10} = 10^{3/10} = \mans{1.995}$
\item
Voltage ratio: $\frac{V_2}{V_1} = 10^{\si{\dB}/20} = 10^{6/20} = \mans{1.995}$
Power ratio: $\frac{P_2}{P_1} = 10^{\si{\dB}/10} = 10^{6/10} = \mans{3.981}$
\item
Voltage ratio: $\frac{V_2}{V_1} = 10^{\si{\dB}/20} = 10^{10/20} = \mans{3.162}$
Power ratio: $\frac{P_2}{P_1} = 10^{\si{\dB}/10} = 10^{10/10} = \mans{10}$
\item
Voltage ratio: $\frac{V_2}{V_1} = 10^{\si{\dB}/20} = 10^{20/20} = \mans{10}$
Power ratio: $\frac{P_2}{P_1} = 10^{\si{\dB}/10} = 10^{20/10} = \mans{100}$
\end{enumerate}
\ex{1.13}
There are two important facts to notice from Exericse 1.12:
\begin{enumerate}[label=\arabic*.]
\item
An increase of \SI{3}{\dB} corresponds to doubling the power
\item
An increase of \SI{10}{\dB} corresponds to 10 times the power.
\end{enumerate}
Using these two facts, we can fill in the table. Start from \SI{10}{\dB}. Fill in \SI{7}{\dB}, \SI{4}{\dB}, and \SI{1}{\dB} using fact 1. Then fill in \SI{11}{\dB} using fact 2. Then fill in \SI{8}{\dB}, \SI{5}{\dB}, and \SI{2}{\dB} using fact 1 and approximating 3.125 as $\pi$.
\begin{center}
\begin{tabular}{c|c}
\si{\dB} & ratio($P/P_0$) \\ \hline
0 & 1\\
1 & \tans{1.25}\\
2 & $\mans{\pi/2}$\\
3 & 2\\
4 & \tans{2.5}\\
5 & \tans{3.125 $\approx \pi$}\\
6 & 4\\
7 & \tans{5}\\
8 & \tans{6.25}\\
9 & 8\\
10 & 10\\
11 & \tans{12.5}
\end{tabular}
\end{center}
\ex{1.14}
Recall the relationship between $I$, $V$, and $C$: $I = C\frac{dV}{dt}$. Now, we perform the integration:
\begin{align*}
\int dU &= \int_{t_0} ^{t_1} VIdt\\
U &= \int_{t_0} ^{t_1} CV\frac{dV}{dt}dt\\
&= C\int_0^{V_f} V dV\\
U &= \frac{1}{2}CV_f^2
\end{align*}
\ex{1.15}
Consider the following two capacitors in series.
\begin{circuit}{fig:1.15.1}{Two capacitors in series.}
(0,0) to[C=$C_1$] (2,0)
to[C=$C_2$] (4,0)
(-0.5,-0.5) to[open, v_>=$V_\text{total}$] (4.5,-0.5)
\end{circuit}
To prove the capacitance formula, we need to express the total capacitance of both of these capacitors in terms of the individual capacitances. From the definition of capacitance, we have
\[C_\text{total} = \frac{Q_\text{total}}{V_\text{total}}\]
Notice that $V_\text{total}$ is the sum of the voltages across $C_1$ and $C_2$. We can get each of these voltages using the definition of capacitance.
\[V_\text{total} = V_1 + V_2 = \frac{Q_1}{C_1} + \frac{Q_2}{C_2}\]
The key observation now is that because the right plate of $C_1$ is connected to the left plate of $C_2$, the charge stored on both plates must be of equal magnitude.\footnotemark Therefore, we have $Q_1 = Q_2$. Let us call this charge stored $Q$ (i.e. $Q = Q_1 = Q_2$). Now, we know that the total charge stored is also $Q$.\footnotemark Therefore, we know that $Q_\text{total} = Q$. Now, we have
\[C_\text{total} = \frac{Q_\text{total}}{V_\text{total}} = \frac{Q}{Q_1/C_1 + Q_2/C_2} = \frac{Q}{Q/C_1 + Q/C_2} = \frac{1}{1/C_1 + 1/C_2}\]
\footnotetext{If this were not true, then there would be a net charge on these two plates and the wire between them. Because we assume that the capacitors started out with no net charge and there is no way for charge to leave the middle wire or the two plates it connects, this is impossible. }
\footnotetext{If you are having trouble seeing this, suppose we apply a positive voltage to the left plate of $C_1$ relative to the right plate of $C_2$. Suppose this causes the left plate of $C_1$ to charge to some charge $q$. We now must have a charge of $-q$ on the right plate of $C_1$ because $q$ units of charge are now pushed onto the left plate of $C_2$. Now the left of $C_2$ has $q$ units of charge which causes a corresponding $-q$ charge on the right side of $C_2$. Thus the overall total charge separated across these two capacitors is $q$.
}
\ex{1.16}
Equation 1.21 gives us the relationship between the time and the voltage ($V_\out$) across the capacitor while charging. To find the rise time, subtract the time it takes to reach 10\% of the final value from the time it takes to reach 90\% of the final value.
\begin{align*}
V_\out &= 0.1V_f = V_f(1-e^{-t_1/RC}) \\
0.1 &= 1 - e^{-t_1/RC}\\
t_1 &= -RC \ln(0.9)
\end{align*}
Similarly, we find that $t_2 = -RC \ln(0.1)$. Subtracting these two gives us
\[t_2 - t_1 = -RC(\ln(0.1) - \ln(0.9)) = 2.2RC\]
\ex{1.17}
The voltage divider on the left side of the circuit can be replaced with the Th\'evenin equivalent circuit found Exercise 1.10 (c). Recall that $V_\Th = \frac{1}{2} V_\in$ and $R_\Th = \SI{5}{\kohm}$. This gives us the following circuit.
\begin{circuit}{fig:1.17.1}{Th\'evenin equivalent circuit to Figure 1.36 from the textbook.}
(0,2) to[open, v_>=$V_\Th$, o-o] (0,0) node[ground]{}
(0,2) to[R=$R_\Th$] (3,2)
to[C=$C$, *-] (3,0) node[ground]{}
(3,2) to[short, -o] (5,2)
to[open, v^>=$V(t)$, o-o] (5,0) node[ground]{}
\end{circuit}
Now we have a simple RC circuit which we can apply Equation 1.21 to. The voltage across the capacitor is given by
\[V(t) = V_\text{final}(1 - e^{-t/RC}) = V_\Th (1 - e^{-t/R_\Th C} = \mans{\frac{1}{2}V_\in (1 - e^{-t/5 \times 10^{-4}})}\]
\begin{plot}{fig:1.17.2}{V(t) sketch.}
[->] (0,0) -- (6,0) node[right] {$t /ms$};
\draw[->] (0,0) -- (0,5) node[left] {$V$};
\draw[smooth, domain = 0:6, color=black, thick] plot (\x,{1/2*8*(1-e^(-\x/0.5))});
\fill [blue] ($(0,0)$) circle (1.5pt) node at (1.4,0)[left] {\color{blue}$(0,0)$};
\node at (4.5,4.5)[right] {\footnotesize\color{blue}$\frac{1}{2}V_\in (1 - e^{-t/(5 \times 10^{-4})})$};
\draw[smooth, dashed, domain=0:4.5, color=gray] plot (\x,4);
\node at (0,4)[left] {\footnotesize\color{blue}$\frac{1}{2}V_\in$};
\fill [blue] ($(0.5,2.52)$) circle (1.5pt) node at (0.5,2.5)[right] {\color{blue}$(0.5,\frac{1}{2}V_\in \times 63\%)$};
\end{plot}
\ex{1.18}
From the capacitor equation in the previous paragraph, we have
\[V(t) = (I/C)t = (\SI{1}{\mA}/\SI{1}{\micro\farad}) \times t = \SI{10}{\V}\]
This gives us
\[\mans{t = \SI{0.01}{\s}}\]
\ex{1.19}
Suppose a current \(I\) is flowing through a loop of wire with cross-sectional area \(A\).
This induces a magnetic field \(B\), and the flux \(\Phi\) through the loop is
\[\Phi = BA\]
Now suppose the same current \(I\) flows through a wire coiled into \(n\) loops, each with the same cross-sectional area \(A\).
This induces a magnetic field of \(n\) times the strength, \(B_n = nB\). Since each loop has area \(A\),
the total cross-sectional area of the coil can be considered \(A_n = nA\). Then the magnetic flux
through the coil is
\[\Phi_n = B_nA_n = n^2BA = n^2\Phi\]
Since inductance is defined as flux through a coil divided by current through the flux,
we can see that \(\Phi_n = n^2\Phi\) implies \(L \propto n^2\).
\ex{1.20}
We can use the formula for the full-wave rectifier ripple voltage to find the capacitance.
\[\frac{I_\load}{2fC} = \Delta V \le 0.1 \text{V}_\pp\]
The maximum load current is 10mA and assuming a standard wall outlet frequency of 60 Hz, we have
\[C \ge \frac{\SI{10}{\mA}}{2\times \SI{60}{\Hz} \times \SI{0.1}{\V}} = \mans{\SI{833}{\micro\farad}}\]
Now we need to find the AC input voltage. The peak voltage after rectification must be \SI{10}{\V} (per the requirements). Since each phase of the AC signal must pass through 2 diode drops, we have to add this to find out what our AC peak-to-peak voltage must be. Thus we have
\[V_{\in, \pp} = \SI{10}{\V} + 2(\SI{0.6}{\V}) = \mans{\SI{11.2}{\V}}\]
\ex{1.21}
In order to calculate the minimum fuse rating for a time-varying current signal, one must calculate the RMS current of the signal - \emph{not} the average current. This is because most fuses are designed to blow at a certain average power level, and average power is related to the average of the \textit{square} of current.
Square waves are defined by two amplitudes. When one of those amplitudes is zero, the RMS value is given by the following equation:
\[ I_{\text{RMS}} = \sqrt{\frac{I^2 + 0}{2}} = \sqrt{\frac{I^2}{2}} = \frac{I}{\sqrt{2}}\]
So in the case of a 0 to 2.0 A square wave with 50\% duty cycle, the theoretical minimum current a fuse should be rated for is:
\[\frac{I}{\sqrt{2}} = \frac{2}{\sqrt{2}} = \mans{\sqrt{2} A}\]
In this case, sizing a fuse for the \textit{average} current (1 A) would too small by a factor of $\sqrt{2}$!
\ex{1.22}
\begin{circuit}{fig:1.22.1}{A symmetric 5.6 V clamping circuit.}
% next macro is available in ctikzmanutils.sty
(0,2.5) node[vcc](vcc){+5V}
(0,-2.5) node[vee](vee){-5V}
(0,0) to[D, l_=1N4148] (0,2.5)
(0,-2.5) to[D, l_=1N4148] (0,0)
(-4,0) node[above]{$V_\in$} to[R, l=$\SI{1}{\kohm}$, o-*] (0,0)
(0,0) to[short, -o] (4,0) node[above]{$V_\out$}
\end{circuit}
\ex{1.23}
For both low-pass and high-pass filters of the first-order, the \textbf{input} impedance is calculated by the series combination of impedances of both circuit elements. The \textbf{output} impedance is calculated as the parallel combination of the impedances of the two circuit elements.
\begin{circuit}{fig:1.23.1}{Low-Pass Filter Driven by a Voltage Source.}
(-1,2) to[V, l_=$V_\in$] (-1,0)
(-1,2) to[R, l=$R$] (2,2)
to[C=$C$, *-*] (2,0)
to[short] (-1,0)
(2,2) to[short, -o] (4,2)
(2,0) to[short, -o] (4,0)
(4,0) to[open, v_<=$V_\out$] (4,2)
\end{circuit}
The minimum input impedance of a low-pass filter occurs at high frequency when the capacitor looks like a short circuit. This is true because this minimizes the impedance of the series-combination of impedances.
\[\mans{Z_{\in,\min} = R + 0 = R}\]
The maximum output impedance a low-pass filter occurs at low frequency when the capacitor looks like an open circuit. This is true because this maximizes the impedance of the parallel-combination of impedances.
\[\mans{Z_{\out,\max} = R \parallel \infty = R}\]
\begin{circuit}{fig:1.23.2}{High-Pass Filter Driven by a Voltage Source.}
(-1,2) to[V, l_=$V_\in$] (-1,0)
(-1,2) to[C=$C$] (2,2)
to[R, l_=$R$, *-*] (2,0)
to[short] (-1,0)
(2,2) to[short, -o] (4,2)
(2,0) to[short, -o] (4,0)
(4,0) to[open, v_<=$V_\out$] (4,2)
\end{circuit}
The reasoning for the high-pass filter is the same as for the low-pass filter. The circuit elements are swapped in their position, but the analysis is the same because: minimizing the input impedance is still a function of minimizing the series combination impedance; maximizing the output impedance is still a function of maximizing the parallel combination impedance.
\ex{1.24}
As the question indicated, the bandpass filter is made of a highpass filter and lowpass filter as shown below.
\begin{circuit}{fig:1.24.1}{Bandpass filter}
(0,-2.5) node[ground](gnd){}
(0,-2.5) to[R, l_=$R1$] (0,0)
(-4,0) node[above]{$V_\in$} to[C, l=$C1$, o-*] (0,0)
(0,0) to [R, l=$R2$, *-*] (4,0)
(4,-2.5) node[ground](gnd){}
(4,0) to [C, l=$C2$] (4,-2.5)
(4,0) to[short, -o] (6.5,0) node[above]{$V_\out$}
\end{circuit}
For highpass and lowpass filters, we have \[ f_\text{3dB} = \frac{1}{2\pi*RC}\]
Given breakpoints, we can determine the resistors and capacitors values to meet the design requirements.
\begin{enumerate}
\item
Given $f_1 = \SI{100}{\Hz}$ from the question:
\[R_1*C_1 = \frac{1}{2\pi*\SI{100}{\Hz}} = \SI{1.6}{\ms} \]
Because the signal source output impedance is \SI{100}{\ohm},
we select a value 10 times higher: $R_1 = \SI{1}{\kohm}$ then:
\[C_1 = \frac{\SI{1.6}{\ms}}{\SI{1}{\kohm}} = \mans{\SI{1.6}{\micro\farad}}\]
\item
Given $f_2 = \SI{10}{\kHz}$ from the question:
\[R_2*C_2 = \frac{1}{2\pi*\SI{10}{\kHz}} = \SI{16}{\us} \]
Because the output impedance of the high-pass filter was approximately \SI{1}{\kohm},
we select a value 10 times greater: $R_2 = \SI{10}{\kohm}$ then:
\[C_2 = \frac{\SI{16}{\us}}{\SI{10}{\kohm}} = \mans{\SI{1.6}{\nano\farad}}\]
\end{enumerate}
\ex{1.25}
\begin{enumerate}
\item
The impedance of 2 parallel capacitors is equal to the impedance of a single capacitor $C$ of value $C_1 + C_2$:
\[ \mathbf{Z_\text{parallel}} = \frac{1}{ \frac{1}{\mathbf{Z_1}} + \frac{1}{\mathbf{Z_2}} } = \frac{1}{ j\omega C_1 + j\omega C_2 } = \mans{\frac{1}{j\omega (C_1 + C_2)}} \]
\item
The impedance of 2 series capacitors is equal to the impedance of a single capacitor $C$ of value $\frac{C_1 C_2}{C_1 + C_2}$:
\begin{align*}
\mathbf{Z_{\text{series}}} &= \mathbf{Z_1} + \mathbf{Z_2} \\
&= \frac{1}{j\omega C_1} + \frac{1}{j\omega C_2} \\
&= \frac{1}{j\omega} \left( \frac{1}{C_1} + \frac{1}{C_2} \right) \\
&= \frac{1}{j\omega} \left( \frac{C_2}{C_1 C_2} + \frac{C_1}{C_2 C_1} \right) \\
&= \frac{1}{j\omega} \left( \frac{C_1 + C_2}{C_1 C_2} \right) \\
&= \frac{1}{j\omega} \frac{1}{\left( \frac{C_1 C_2}{C_1 + C_2} \right)} \\
&= \mans{ \frac{1}{j\omega\left( \frac{C_1 C_2}{C_1 + C_2} \right)}}
\end{align*}
\end{enumerate}
\ex{1.26}
\[ A e^{j\theta} = B e^{j\phi}C e^{j\alpha} = BC e^{j\left(\phi + \alpha\right)}\]
Therefore, because $A$, $B$, and $C$ are all real numbers, $\theta$ must be equal to $(\phi + \alpha)$, so the exponentials on either side of the equation cancel.
\[A e^{j\theta} = BC e^{j\left(\phi + \alpha\right)}\]
\[A e^{j\theta} = BC e^{j\theta}\]
\[\mans{\textnormal{\textit{A}} = \textnormal{\textit{BC}}}\]
\ex{1.27}
We can solve this problem from two aproaches: analitically, or by inspecting the
power waveform over a full cycle. First analytically:\bigskip
\begin{align*}
V(t)&=V_0\mathrm{cos}\left(2\pi f t\right)&& \text{Define the voltage}\\
I(t)&=I_0\mathrm{cos}\left(2\pi f t + \tfrac{\pi}{2}\right)&&\text{and current waveforms}\\
\\
P(t)&=V(t)\cdot I(t)\\
&=V_0I_0\mathrm{cos}\left(2\pi f t\right)\mathrm{cos}\left(2\pi f t + \tfrac{\pi}{2}\right)&&\text{Using cosine multiplication rule}\\
&=V_0I_0\frac{\mathrm{cos}\left(4\pi f t + \tfrac{\pi}{2}\right)+\cancelto{0}{\mathrm{cos}\left(\tfrac{\pi}{2}\right)}}{2}&&\text{we express the power waveform}\\
& &&\text{as a sum of two cosines}\\
\\
P_{\mathrm{av}}&=\frac{1}{T}\int_0^TV_0I_0\frac{\mathrm{cos}\left(4\pi f t + \tfrac{\pi}{2}\right)}{2}\mathrm{d}t&&\text{From this point we take the integral}\\
&=\frac{V_0I_0}{2T}\left[\frac{\mathrm{sin}\left(4\pi f t+ \tfrac{\pi}{2}\right)}{4\pi f}\right]_{t=0}^{t=T}&& \text{and evaluate over one cycle}\\
&=\frac{V_0I_0}{8\pi}\underbrace{\left(\mathrm{sin}\left(4\pi+\tfrac{\pi}{2}\right)-\mathrm{sin}\left(\tfrac{\pi}{2}\right)\right)}_{1-1=0}=\mans{0}
\end{align*}
As an alternative method we can avoid the integration part by simply observing
the power waveform over one full cycle considering $f=1, I_0=V_0=2$
\begin{figure}[H]
\centering
\begin{tikzpicture}
\begin{axis}[samples=100,domain=0:2,legend pos=outer north east]
\addplot[mark=none, blue] {-2*sin(deg(2*pi*x))};
\addplot[mark=none, red] {2*cos(deg(2*pi*x))};
\addplot[mark=none, fill=red, domain=0:0.25, fill opacity=0.2 ] {(-4*sin(deg(4*pi*x)))};
\addplot[mark=none, fill=green, domain=0.25:0.5, fill opacity=0.2 ] {(-4*sin(deg(4*pi*x)))};
\addplot[mark=none, fill=red, domain=0.5:0.75, fill opacity=0.2 ] {(-4*sin(deg(4*pi*x)))};
\addplot[mark=none, fill=green, domain=0.75:1, fill opacity=0.2 ] {(-4*sin(deg(4*pi*x)))};
\addplot[mark=none, fill=red, domain=1:1.25, fill opacity=0.2 ] {(-4*sin(deg(4*pi*x)))};
\addplot[mark=none, fill=green, domain=1.25:1.5, fill opacity=0.2 ] {(-4*sin(deg(4*pi*x)))};
\addplot[mark=none, fill=red, domain=1.5:1.75, fill opacity=0.2 ] {(-4*sin(deg(4*pi*x)))};
\addplot[mark=none, fill=green, domain=1.75:2, fill opacity=0.2 ] {(-4*sin(deg(4*pi*x)))};
\legend{$I(t)$,$V(t)$,$P(t)$}
\end{axis}
\end{tikzpicture}
\end{figure}
From the plot it is clear that the red and green areas are equal and opposite
and thus when integrating over a integer number of cycles the average power will
be zero.
\ex{1.28}
\begin{circuit}{fig:1.28.1}{RC Circuit with AC Voltage Source}
(0,-2.5) node[ground](gnd){}
(0,-2.5) to[vsourcesin,l=$V_0\cos\omega t$] (0,0)
(0,0) to [C,l=$C$] (4,0)
(4,-2.5) node[ground](gnd){}
(4,0) to [R,l=$R$] (4,-2.5)
(4,0) to[short, -o] (6.5,0) node[above]{$V_R$}
\end{circuit}
From discussions before this question, we know that
\[P = Re(VI^*)=\frac{V_0^2R}{R^2+(\frac{1}{\omega^2C^2})}=\frac{V_0^2}{R} * \frac{(\omega RC)^2}{1 + (\omega RC)^2}\]
Since R and C are connected in series, we have
\[\frac{V_R}{V_0} = \frac{R}{R + \frac{1}{j\omega C}}\]
Thus, we can calculate the power consumed by the resistor in the following steps.
\[V_R = V_0 * \frac{j\omega RC}{1+j\omega RC}\]
\[\frac{V_R^2}{R} =\frac{V_0^2}{R} * \frac{(\omega RC)^2}{1 + (\omega RC)^2}\]
We can see that it is equal to the real power delivered to the circuit. In another word, all the real power delivered to this circuit is consumed in the resistor.
\ex{1.29}
\begin{enumerate}
\item RLC series circuit
Since the resistor, inductor, and capacitor are in series, we can calculate the impedance of the circuit by adding individual impedance together.
\[Z = R + j\omega L - j \frac{1}{\omega C} \]
Given $C = \frac{1}{\omega^2 L}$,
\[Z = R + j\omega L - j\omega L = R \]
Thus, this reactive circuit can be treated as a resistive circuit when calculating the power factor, which is $1$.
\item RLC parallel circuit
Since all the components are in parallel, the invert of total impedance is the sum of inverts of all components' impedance
\[\frac{1}{Z} = \frac{1}{R} + \frac{1}{j\omega L} + j \omega C\]
Given $C = \frac{1}{\omega^2 L}$,
\[\frac{1}{Z} = \frac{1}{R} + \frac{1}{j\omega L} - \frac{1}{j\omega L} = \frac{1}{R}\]
Similarly, this show that this circuit can also be treated as a resistive circuit whoes power factor is $1$.
\end{enumerate}
\ex{1.30}
$V_\out$ is simply the voltage at the output of an impedance voltage divider. We know that $Z_R = R$ and $Z_C = \frac{1}{j\omega C}$. Thus we have
\[V_\out = \frac{Z_C}{Z_R + Z_C} V_\in = \frac{\frac{1}{j \omega C}}{R + \frac{1}{j \omega C}} V_\in = \frac{1}{1 + j \omega R C} V_\in\]
The magnitude of this expression can be found by multiplying by the complex conjugate and taking the square root.
\[\sqrt{V_\out V_\out^*} = \frac{1}{\sqrt{1 + \omega^2R^2C^2}}V_\in\]
\ex{1.31}
From the frequency response of lowpass filter plotted on logarithmic axes, we know
\[\phi = -\arctan(\frac{f}{f_c})\]
Thus, when $f = 0.1f_\text{3dB}$,
\[\phi = -\arctan(0.1) \approx -5.71 ^\circ \approx -6^\circ\]
Similarly, when $f = 10f_\text{3dB}$,
\[\phi = -\arctan(10) \approx -84.29 ^\circ\]
The phase shift can also be expressed as $-(-90 - (-84.29)) \approx 5.71 ^\circ \approx 6^\circ $
In summary, for single-section $RC$ filters, the phase shift is $\approx 6^\circ$ from its asymptotic value at $0.1f_\text{3dB}$ and $10f_\text{3dB}$.
\ex{1.32}
% \begin{plot}{fig:1.17.2}{Phasor diagram for highpass filter at $3dB$ point.}
% % node[left] {$Z$}(-1,1);
% \draw (-1,0) -- (4,0);
% \draw (0,1) -- (0,-4);
% \draw[->] (0,0) -- (2,0) node[right] {$R$};
% \draw[->] (2,0) -- (2,-2) node[left] {$\frac{-j}{\omega C}$};
% \draw[->] (0,0) -- (2,-2) node[left] {$R\sqrt{2}$};
% \end{plot}
Given that the current is the same everywhere in series circuits, the axes also shows the relationships among voltages.
\[\frac{V_\text{out}}{V_\text{in}} = \frac{R}{hypotenuse}\]
By Pythagorean Theorem,
\[\frac{R}{hypotenuse} = \frac{R}{\sqrt{R^2 + (-j/\omega C)^2}} = \frac{R}{\sqrt{R^2 + \frac{1}{\omega^2 C^2}}}\]
Thus, $V_\text{out} = V_\text{in} * \frac{R}{\sqrt{R^2 + \frac{1}{\omega^2 C^2}}}$
\ex{1.33}
For the lowpass filter, $V_\text{out}$ and $V_\text{in}$ have the following relationship.
\[V_\text{out} = V_\text{in} * \frac{1}{\sqrt{1+\omega ^2 R^2 C^2}}\]
Given $V_\text{out} = \frac{1}{2} V_\text{in}$,
\[\frac{1}{\sqrt{1+\omega ^2 R^2 C^2}} = \frac{1}{2}\]
Thus, solving for $\omega$
\[\frac{1}{1+\omega^2 R^2 C^2} = \frac{1}{4}\]
\[1+\omega^2 R^2 C^2 = 4\]
\[\omega^2 R^2 C^2 = 3\]
\[\omega = \frac{\sqrt{3}}{RC}\]
Since $f = \frac{\omega}{2\pi}$,
\[f = \frac{\sqrt{3}}{2\pi RC}\]
From previous calculation, we have $C = \frac{\sqrt{3}}{RC}$
From the phasor diagram for lowpass filter at $3dB$ point, we know that
\[\aleph = \arctan(\frac{\frac{-j}{\omega C}}{R}) =\arctan(-\frac{1}{\sqrt{3}}) = -30^\circ\]
Thus, the phase shift is
\[\phi = -90^\circ - (-30^\circ) = -60^\circ\]
\ex{1.34}
% \begin{plot}{fig:1.17.2}{Phasor diagram for highpass filter at $3dB$ point.}
% % node[left] {$Z$}(-1,1);
% \draw (-1,0) -- (4,0);
% \draw (0,1) -- (0,-4);
% \draw[->] (0,0) -- (2,0) node[right] {$R$};
% \draw[->] (2,0) -- (2,-2) node[left] {$\frac{-j}{\omega C}$};
% \draw[->] (0,0) -- (2,-2) node[left] {$R\sqrt{2}$};
% \end{plot}
From the phasor diagram, we can see that
\[\frac{V_\text{out}}{V_\text{in}} = \frac{C}{hypotenuse}= \frac{C}{\sqrt{R^2 + C^2}}\]
pluging in $ C = \frac{-j}{\omega C}$
\[\frac{V_\text{out}}{V_\text{in}} = \frac{\frac{-j}{\omega C}}{\sqrt{R^2 + \frac{1}{\omega^2 C^2}}} = \frac{-j}{\omega C} * \frac{\omega C}{\sqrt{R^2 \omega^2 C^2+1}}
= \frac{-j}{\sqrt{R^2 \omega^2 C^2+1}}\]
\ex{1.35}
Resistor, inductor, and capacitor in series forms a voltage devider, so
\[\frac{V_\text{out}}{V_\text{in}} = \frac{Z_\text{LC}}{R + Z_\text{LC}}\]
Since the inductor and capacitor are in series and $\omega_0 = \frac{1}{\sqrt{LC}}$, which was derived from $f_0 = \frac{1}{2\pi \sqrt{LC}}$.
We can write $Z_\text{LC}$ as following,
\[Z_\text{LC} = Z_\text{L} + Z_\text{C} = j\omega L + \frac{-j}{\omega C} = j(\omega L - \frac{1}{\omega C})
= jL(\frac{\omega^2 - \omega_0^2}{\omega})\]
We can describe the response in the following conditions:
\begin{enumerate}
\item
When $f=f_0$, $\omega = \omega_0$ and $Z_\text{LC} = 0$. Thus, $\frac{V_\text{out}}{V_\text{in}} = 0$.
\item
When $f<f_0$, $\omega < \omega_0$ and $Z_\text{C} > Z_\text{L}$, which makes the circuit more capcitive.
Thus, the circuit has a similar response as capacitors.
%TODO: add plot
\item
When $f>f_0$, $\omega > \omega_0$ and $Z_\text{L} > Z_\text{C}$, which means the inductor has more impact on the general response of the whole circuit.
Thus, the circuit responses more like inductors.
\end{enumerate}
Thus, we see the response plot captured in Figure 1.109 from the textbook.
\ex{1.36}
We can see from textbook Figure 1.122 that two SPDT switches can control the lamp independently.
We need to explore wirings that allow DPDT switches to switch from two states. The following wire shows how to turn DPDT switches to work as described.
\begin{circuit}{fig:1.36.1}{Wiring a DPDT switch to switch from two states}
(2.6,0.7)to[short](2.6,-0.5)
(2.6,-0.6)node[spdt](S2){}
(2.6,0.6)node[spdt](S1){}
(S1.out 1) to [short] (4.5,0.9)
to [short,-o](5.5,0.9) node[right]{state 1}
(4.7,0.9)to [short,*-*](4.7,-0.9)
(S1.out 2) to [short] (4.5,0.3)
to [short,*-*](4.5,-0.3)
(S2.out 1) to [short] (4.5,-0.3)
to [short,-o](5.5,-0.3) node[right]{state 2}
(S2.out 2) to [short] (4.7,-0.9)
\end{circuit}
\begin{circuit}{fig:1.36.2}{Generalization of ``three-way" Switch Wiring with Two SPDT Switches And $N-2$ DPDT Switches}
(-1,0) to [short](0,0)
(2.6,0.7)to[short](2.6,-0.5)
(0.6,0)node[spdt](S0){}
(S0.out 1) node[right] {}
to [short] (2,0.3)
to [short] (2,0.6)
(S0.out 2) node[right]{}
to [short](2,-0.3)
to [short] (2,-0.6)
(2.6,-0.6)node[spdt](S2){}
(2.6,0.6)node[spdt](S1){}
(S1.out 1) to [short] (4.5,0.9)
to [short](5.5,0.9)
to[short](5.5,0.6)
to [short,-o](6.5,0.6)
to [short,-o](7.2,0.3)
to [short](8,0.3)
(4.7,0.9)to [short,*-*](4.7,-0.9)
(S1.out 2) to [short] (4.5,0.3)
to [short,*-*](4.5,-0.3)
(S2.out 1) to [short] (4.5,-0.3)
to [short](5.5,-0.3)
to [short](5.5,0)
to [short,-o](6.5,0)
(S2.out 2) to [short] (4.7,-0.9)
\end{circuit}
\ex{1.37}
Recall that $I_\text{Norton} = I_\text{short circuit the load}$, so we can transform the circuit as shown below.
\begin{circuit}{fig:1.37.1}{Circuit to find $I_\text{Norton}$}
(0,0) to [V,l=10V]
(0,-2.5) node[ground](gnd){}
to [short](3,-2.5)
(0,0) to [R,l=10k](3,0)
to [R,l=10k](3,-2.5)
(3,0) to [short,*-](4,0)
to [short](4,-2.5)
to [short,-*](3,-2.5)
\end{circuit}
Then, $I_\text{Norton} = \frac{\SI{10}{V}}{\SI{10}{\kohm}}=\SI{1}{mA}$
To find $R_\text{Norton}$, it's very similar to how we find $R$ in superposition where we remove all power sources. Then, the circuit is transformed as shown below.
\begin{circuit}{fig:1.37.2}{Circuit to find $R_\text{Norton}$}
(0,0) to [R,l=10k](3,0)
to [R,l=10k](3,-3)
to [short, -o](4,-3)
(0,0) to[short](0,-3)
to [short](3,-3)
(3,0) to[short,-o](4,0)
(4,-1.5) node[right]{$R_\text{Norton}$}
\end{circuit}
Based on the circuit, $R_\text{Norton} = \frac{1}{\frac{1}{10}+\frac{1}{10}} = \SI{5}{\kohm}$
Thus, the Norton equivalent circuit is shown below.
\begin{circuit}{fig:1.37.3}{Circuit to find $R_\text{Norton}$}
(0,-2.5) to [I,l=\SI{1}{mA}](0,0)
to [short](3,0)
(0,-2.5) node[ground](gnd){}
to [short](3,-2.5)
to [R,l=\SI{5}{\kohm}](3,0)
to [short,-o](4,0)
(3,-2.5) to [short,-o](4,-2.5)
(4,-1.25)node[right]{$load$}
\end{circuit}
When the $R_\text{load} = \SI{5}{\kohm}$, $V_\text{out} = \frac{\SI{5}{\kohm}}{2}*\SI{1}{mA}=\SI{2.5}{V}$
And, the original circuit is as shown below.
\begin{circuit}{fig:1.37.4}{Original Circuit with a $\SI{5}{\kohm}$ load}
(0,0) to [V,l=10V]
(0,-2.5) node[ground](gnd){}
to [short](3,-2.5)
(0,0) to [R,l=10k](3,0)
to [R,l=10k](3,-2.5)
(3,0) to [short,*-](5,0)
to [R,l=$5k$](5,-2.5)
to [short,-*](3,-2.5)
\end{circuit}
Thus, $V_\text{out} = \frac{V_\text{in}*\frac{1}{\frac{1}{10}+\frac{1}{5}}}{10+\frac{1}{\frac{1}{10}+\frac{1}{5}}}
=\SI{2.5}{V}$
Finally, we showed that the Norton equivalent gives the same output voltage as the actual circuit when loaded by a $5k$ resistor.
\ex{1.38}
Based on the circuit shown in this excercise, $V_\text{Th} = V_\text{open}=\SI{0.5}{mA}*\SI{10}{\kohm}=\SI{5}{V}$
$I_\text{short} = \SI{0.5}{mA}$, so $R_\text{Th} = \frac{\SI{5}{V}}{\SI{0.5}{mA}}= \SI{10}{\kohm}$
Similarly, we can find the Thévenin equivalent for the previous excercise.
\[V_\text{Th} = \frac{\SI{10}{\kohm}}{10+10}*V_\text{in} = \SI{5}{V}\]
\[I_\text{short} =\frac{\SI{10}{V}}{\SI{10}{\kohm}} = \SI{1}{mA}\]
\[R_\text{Th} = \frac{\SI{5}{V}}{\SI{1}{mA}} = \SI{5}{\kohm}\]
Since the $R_\text{Th}$ is different from the previous result, we can see that these Thévenin circuits are not the same.
\ex{1.39}
Based on the filter behaviors, the ``rumble filter" is essentially a high-pass filter.
Given $f_\text{3dB} = \SI{10}{\Hz}$ from the question:
\[R*C = \frac{1}{2\pi*\SI{10}{\Hz}} \approx \SI{16}{\ms} \]
Since the load (\SI{10}{\kohm} minimum) is in parallel with the reistor in the RC high-pass filer, we should select a relatively small resistor for the filter design
so that the load doesn't affect the filter's performance significantly.
We select a resistor: $R = \frac{\SI{10}{\kohm}}{100}=\SI{100}{\ohm}$ then:
\[C = \frac{\SI{16}{\ms}}{\SI{100}{\ohm}} = \SI{160}{\micro\farad}\]
The filter design is shown below.
\begin{circuit}{fig:1.39.1}{Rumble Filter}
(-1,2) to[V, l_=$V_\in$] (-1,0)
(-1,2) to[C=$\SI{160}{\micro\farad}$] (2,2)
to[R, l_=$\SI{100}{\ohm}$, *-*] (2,0)
to[short] (-1,0)
(2,2) to[short, -o] (4,2)
(2,0) to[short, -o] (4,0)
(4,0) to[open, v_<=$V_\load$] (4,2)
\end{circuit}
\ex{1.40}
The ``scratch filter" for audio signals is essentially a low-pass filter that filter out high-frequency sounds, such as scratches.
Given $f_\text{3dB} = \SI{10}{\kHz}$ from the question:
\[R*C = \frac{1}{2\pi*\SI{10}{\kHz}} = \SI{0.016}{\ms} \]
Similar to the high-pass filter design in the previous question, we need to pick a low impedance capacitor so that the load doesn't affect the filter's performance significantly.
We select a capacitor: $C =\SI{0.01}{\micro\farad}$ then:
\[R = \frac{1}{2\pi*10000*0.01*0.000001} \approx \SI{1.6}{\kohm}\]
\begin{circuit}{fig:1.40.1}{Scratch Filter}
(-1,2) to[V, l_=$V_\in$] (-1,0)
(-1,2) to[R, l=$\SI{1.6}{\kohm}$] (2,2)
to[C=$\SI{0.01}{\micro\farad}$,*-*] (2,0)
to[short] (-1,0)
(2,2) to[short, -o] (4,2)
(2,0) to[short, -o] (4,0)
(4,0) to[open, v_<=$V_\load$] (4,2)
\end{circuit}
\ex{1.41}
Since we need to design a filter using resitors and capcitors to produce the results as plotted, we need to think of RC circuits that we discussed before as building blocks for this problem.
Based on the plot, when $\omega < \omega_0$, the filter acts like a voltage divider and $\frac{V_\text{out}}{V_\text{in}} = 0.5$
When $\omega > \omega_0$, the filer looks like a high-pass filter.
We can combine voltage divider circuit and high-pass filter as shown below.
\begin{circuit}{fig:1.41.1}{High-emphasis filter}
(0,0) to[short] (0,-2)
to[C, l_=$C$] (3.5,-2)
to[short,-*](3.5,0)
(-1.5,0) node[above]{$V_\in$} to[short, o-*] (0,0)
(0,0) to [R, l=$R1$, *-*] (4,0)
(4,-2.5) node[ground](gnd){}
(4,0) to [R, l=$R2$] (4,-2.5)
(4,0) to[short, -o] (5.5,0) node[above]{$V_\out$}
\end{circuit}
when $\omega < \omega_0$, the capacitor acts as if it's open, and the circuit is a voltage devider.
Given that $\frac{V_\text{out}}{V_\text{in}} = 0.5$, $R_1 = R_2 = R$
When $\omega > \omega_0$, the high frequency signals can pass the capacitor, but low frequency signals are blocked.
We can find the capacitor value by treating the circuit as a high-pass filter.
$f_\text{3dB} = \frac{1}{2\pi*RC}$ and $\omega = 2\pi*f_\text{3dB}$ so $C = \frac{R}{\omega_0}$
\ex{1.42}
\begin{circuit}{fig:1.42.1}{Bandpass filter}
(0,-2.5) node[ground](gnd){}
(0,-2.5) to[R, l_=$R1$] (0,0)
(-4,0) node[above]{$V_\in$} to[C, l=$C1$, o-*] (0,0)
(0,0) to [R, l=$R2$, *-*] (4,0)
(4,-2.5) node[ground](gnd){}
(4,0) to [C, l=$C2$] (4,-2.5)
(4,0) to[short, -o] (6.5,0) node[above]{$V_\out$}
\end{circuit}
The bandpass filter is made of a high-pass filter and a low-pass filter. Thus, given $f_1$ and $f_2$, we have
\[f_1 = \frac{1}{2\pi*R_1*C_1}\]
\[f_2 = \frac{1}{2\pi*R_2*C_2}\]
As discussed in the session ``Driving and loading RC filters" in the book, the assumptions are small input impedance compared to the load.
We can set $R_1 = \frac{1}{10} * R_2$, and then
\[C_2 = \frac{1}{2\pi * f_2 R_2 }\]
\[C_1=\frac{1}{f_1*2\pi R_1} = \frac{1}{f_1*2\pi * 0.1R_2} = \frac{5}{\pi R_2 f_1}\]
\ex{1.43}
The circuit is the diode limiter discussed before (Figure 1.78 in the textbook), and the output is the same as the plots A and B in $Figure 1.79$.
We need to find the characters of the output signal.
Given that $f=\SI{60}{\Hz}$
\[T = \frac{1}{f} = \frac{1}{60} \approx \SI{17}{ms}\]
\[\omega = 2 \pi f = 120 \pi\]
\ex{1.44}
The equivalent capacitance of the oscilloscope and cable is
\[ C_o = \SI{100}{\pico\farad} + \SI{20}{\pico\farad} = \SI{120}{\pico\farad}\]
The equivalent input impedance of the oscilloscope and the total capacitance is:
$Z_o = \left( R_o \parallel \frac{1}{j\omega C_o} \right)$
where $R_o$ is the input resistance of the scope (\SI{1}{\mega\ohm}).
In order to reduce the voltage by a factor of 10, let us create a voltage divider between the probe tip and the equivalent scope-and-cable input impedance.
\begin{circuit}{fig:1.44.1}{Basic Voltage Divider}
(-1,0) to[open, v_<=$V_\in$] (-1,2)
(-1,2) to[generic=$Z_{\text{probe}}$] (2,2)
to[generic, l_=$Z_o$, *-*] (2,0)
to[short] (-1,0)
(2,2) to[short, -o] (4,2)
(2,0) to[short, -o] (4,0)
(4,0) to[open, v_<=$V_\out$] (4,2)
\end{circuit}
In order to reduce the voltage by a factor of ten, our circuit must satisfy
\[V_{\out} = \frac{V_{\in}}{10}\]
We know that the output of a voltage divider is given by
\[V_{\out} = V_{\in}\frac{Z_{\out}}{Z_{\out} + Z_{\in}}\]
When we equate the previous two expressions, it yields
\[\frac{V_{\in}}{10} = V_{\in}\frac{Z_o}{Z_o + Z_{\text{probe}}}\]
We may cancel $V_{\in}$ from both sides of the equation and rearrange terms
\[Z_o + Z_{\text{probe}} = 10 Z_o\]
Subtract $Z_o$ from both sides to solve for the probe impedance:
\begin{align*}
Z_{\text{probe}} &= 9 Z_o \\
&= 9 \left( R_o \parallel \frac{1}{ j\omega C_o } \right) \\
&= 9 R_o \parallel \frac{9}{ j\omega C_o } \\
&= 9 R_o \parallel \frac{1}{ j\omega \left( \frac{1}{9} C_o \right) }
\end{align*}
So our ``x10 probe'' should be the parallel combination of a resistor and a capacitor. The resistor should be 9 times greater than the input resistance of the scope ($R_o$). The probe's capacitor should be 9 times \textit{smaller} than $C_o$ (the total capacitance of the cable and the oscilloscope).
\[R_{\text{probe}} = 9 R_o\]
\[C_{\text{probe}} = \frac{1}{9} C_o\]
\begin{circuit}{fig:1.44.2}{x10 Probe}
(-1,0) to[open, v_<=$V_\in$, o-] (-1,2)
(0,3) to[C, l=$C_{\text{probe}}$] (2,3)
(0,2) to[R, l_=$R_{\text{probe}}$, *-*] (2,2)
(0,3) to[short] (0,2)
(2,3) to[short] (2,2)
(0,2) to[short, -o] (-1,2)
(3,2) to[R, l_=$R_o$, *-*] (3,0)
(4,0)to[C, l_=$C_o$, *-*] (4,2)
(2,0) to[short] (-1,0)
(2,2) to[short, -o] (6,2)
(2,0) to[short, -o] (6,0)
(6,0) to[open, v_<=$V_\out$] (6,2)
\end{circuit}
Many x10 probes implement $C_{\text{probe}}$ as a variable capacitor that the user may tune to very near one ninth the cable-plus-oscilloscope capacitance. This is sometimes referred to as ``probe compensation''.
The input impedance of this x10 probe is
\begin{align*}
Z_{\in} &= Z_{\text{probe}} + Z_o \\
&= 9 R_o \parallel \frac{1}{ j\omega \left( \frac{1}{9} C_o \right) } + \left( R_o \parallel \frac{1}{ j\omega C_o } \right) \\
&= 9 \left( R_o \parallel \frac{1}{ j\omega C_o } \right) + \left( R_o \parallel \frac{1}{ j\omega C_o } \right) \\
&= 10 \left( R_o \parallel \frac{1}{ j\omega C_o } \right) \\
Z_{\in} &= \mans{ 10 Z_o }
\end{align*}
Finally, lets take a look at how the probe and the oscilloscope (working as a voltage divider) affect the output voltage as a function of the input voltage.
\begin{align*}
\frac{V_{\out}}{V_{\in}} &= \frac{Z_o}{Z_{\in}} \\
&= \frac{ R_o \parallel \frac{1}{ j\omega C_o } }{ 10 \left( R_o \parallel \frac{1}{ j\omega C_o } \right) } \\
\frac{V_{\out}}{V_{\in}} &= \frac{1}{10}
\end{align*}
It is remarkable! The voltage transfer function of this circuit is \textit{precisely} $\frac{1}{10}$. This circuit contains four passive components (two of them reactive) but \textbf{the transfer function does not depend on frequency}. Truly, the ancients were wise and knew many great things.
% Here ends Chapter 1.
%%% Local Variables:
%%% mode: latex
%%% TeX-master: "main"
%%% End: