The combined resistance RT of three resistors R1, R2, and R3 in parallel is given by
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:1| Question number:16.1
All Answers
total answers (1)
>> r1 = 3; >> r2 = 2.2; >> r3 = 1.5; >> rt = 1/(1/r1 + 1/r2 + 1/r3) rt = 0.6875
need an explanation for this answer? contact us directly to get an explanation for this answer