Solutions to Systems of Linear Equations

Size: px
Start display at page:

Download "Solutions to Systems of Linear Equations"

Transcription

1 Solutions to Systems of Linear Equations 5 Overview In this chapter we studying the solution of sets of simultaneous linear equations using matrix methods. The first section considers the graphical interpretation of such solutions. Graphical Interpretation In engineering problem solving the need to solve a set of simultaneous linear equations arises frequently Note: We keep specializing the system of equations to linear equations since in the modeling of large systems, linear approximations are a reasonable first approach and in many cases sufficient for design purposes To develop an appreciation for what is really happening when we ask the computer solve a set of simultaneous linear equations, we will explore graphical solutions first Chapter 5: Overview 5

2 A Pair of Linear Equations with Two Unknowns In the x-y plane we can write y m x + b y m 2 x + b 2 (5.) We know that m is the slope and b is the y-intercept y y mx+ b b x Depending upon how will m, m 2, b and b 2 are chosen, the lines Intersect at a point if m m 2 Be parallel to one another if m m 2, but b b 2 Be the same line if m m 2 and b b 2 y Parallel y Same Line y x x x Point of Intersection Chapter 5: Graphical Interpretation 5 2

3 To obtain a matrix formulation of this problem we would first rewrite (5.) as m x m 2 x y b y b 2 (5.2) or m m 2 x y b b 2 (5.3) The two lines intersect in a point if the matrix inverse m m 2 (5.4) exists; why? Consider m m 2 m m 2 x y m m 2 b b I Chapter 5: Graphical Interpretation 5 3

4 Thus the intersection point has x-y coordinates x y m m 2 b b 2 (5.5) Linear Equations with Three Unknowns: The Intersection of Planes The equation for a plane in the space x-y-z is given by z ax+ by+ c Two planes (two equations and three unknowns) may Intersect in a line (multiple solutions) Lie parallel to one another (no solutions) Be the same plane (multiple solutions) Three planes (three equations and three unknowns) may Intersect in a single point (a single solutions) Intersect in a line (multiple solutions) Form three parallel planes (no solutions) Be the same plane (multiple solutions) Other possibilities (see book) Chapter 5: Graphical Interpretation 5 4

5 x z y Two Planes Intersecting in a Line Three Parallel Planes Plane #2 Plane #3 Plane # Unique Point of Intersection M Hyperplanes of N Variables Each The generalization of the above ideas is consider a hyperplane defined in N-dimensional space a x + a 2 x 2 + a 3 x a N x N 0 Chapter 5: Graphical Interpretation 5 5

6 We can not actually draw hyperplanes beyond N 3, but the concept of solving M simultaneous equations of N unknowns, extends from the notions developed for three dimensions In the following assume the M hyperplanes are unique If M< N we say that the system is underspecified and a unique solution does not exist As an example consider how two planes may intersect in a line (here M 2 and N 3) If M N a unique solution is possible if none of the hyperplanes are parallel to each other As an examples consider how three faces of a cube intersect in a point If M> N we say that the system is overspecified and a unique solution does not exist As an example consider how three lines in the plane may pair-wise intersect, but not have a common solution When a unique solution exists we say that the system of equations is nonsingular When no unique solution exists we say the system of equations is singular Chapter 5: Graphical Interpretation 5 6

7 Solutions Using Matrix Operations The two equations and two unknowns given in (5.2) can be cast into a more general notation as follows a x + a 2 x 2 b a 2 x + a 22 x 2 b 2 Extending to N equations and N unknowns we have a x + a 2 x a N x N b a 2 x + a 22 x a 2N x N b 2 a N x + a N2 x a NN x N b N (5.6) If we let a a 2 a N x b A a 2 a 22 x, X 2, B a N a NN x N b 2 b N (5.7) we can write (5.6) in matrix form AX B Not that we could also write (5.6) as X T A T B T (5.8) (5.9) Chapter 5: Solutions Using Matrix Operations 5 7

8 This follows from the matrix theory result that Note: (5.9) is simply another way expressing a system of N equations and N unknowns as a matrix equation Matrix Division In MATLAB solving matrix equations of the form (5.8) and (5.9) is very easy Two basic approaches are available In this subsection we consider the use of matrix division Given (the form of (5.8)) is the matrix equation, with X the quantity of interest, we use matrix left division as follows X A\B; % Note the backslash The numerical technique used here is Gauss elimination Given (the form of (5.8)) is the matrix equation, with X the quantity of interest, we use matrix right division as follows X A/B; % Note the backslash Example: N 2» A [ 2; 3 4];» B [2; 5];» X A\B ( GH) T H T G T AX XA B B Chapter 5: Solutions Using Matrix Operations 5 8

9 X » Xt B'/A' Xt %The same solutions as expected If the solution is singular MATLAB gives Nan s or Inf s If the solution is nearly singular, a warning message is given Matrix Inverse As shown in (5.5) an alternate solution approach involves the use of the matrix inverse, i.e., if then but A A I and IX X, so In MATLAB this would be written as X inv(a)*b; A AX B AX A X A B B (5.0) Chapter 5: Solutions Using Matrix Operations 5 9

10 Using (5.9) the solution is which reduces to X T A T ( A T ) B T ( A T ) X T B T ( A T ) (5.) Example: Practice! p. 57 (2,6) Solve the following systems of equations using both matrix division and inverse matrices. For systems with just two variables (unknowns), plot the equations on the same graph to see the intersection (unique solution) or show that the system is singular (without a unique solution). 2. A system of two equations and two unknowns: 2x + x 2 3 2x + x 2 Load the system into MATLAB with A 2 2, B 3» A [-2 ; -2 ]; B [-3; ];» % Solve using matrix division:» X A\B Warning: Matrix is singular to working precision. Chapter 5: Solutions Using Matrix Operations 5 0

11 X Inf Inf» % Solve using the matrix inverse, first check» % to see if rank is 2» rank(a) ans» % Unique solution does not exist Now we plot the two equations to see what is going on with regard to the solution» x -0:.:0;» x2_ 2*x - 3;» x2_2 2*x + ;» s length(x);» plot(x(:0:s),x2_(:0:s),'s',x(:0:s),... x2_2(:0:s),'d')% Plot symbols at a few points» legend('first Eqn','Second Eqn')» hold Current plot held» plot(x,x2_,x,x2_2) % Plot lines with all points» grid» title('plot of Two Equations for #2','fontsize',6)» ylabel('x2','fontsize',4)» xlabel('x','fontsize',4) Chapter 5: Solutions Using Matrix Operations 5

12 25 20 Plot of Two Equations for #2 First Eqn Second Eqn x A system of three equations and three unknowns: x 3x + 2x 2 x 3 x + 3x 2 + 2x 3 x x 2 x 3 Chapter 5: Solutions Using Matrix Operations 5 2

13 Load the system into MATLAB with A , B» A [3 2 -; - 3 2; - -]; B [; ; ];» % Solve using matrix division:» X A\B X » %Solve using the matrix inverse, first check rank:» rank(a) ans 3» X inv(a)*b X » % Solutions agree! The three planes must intersect at the point (9,-6,4) Chapter 5: Solutions Using Matrix Operations 5 3

14 Problem Solving Applied: Electrical Circuit Analysis In the solution of electrical circuit problems we must deal with systems of linear equations. The electrical engineering curriculum does not take this subject lightly. The electrical engineering BSEE program devotes two semesters to circuit analysis Two semesters to electronic circuits analysis One semester to the study of signals and systems The foundation of circuit analysis are Kirchoff s voltage and current laws We will briefly introduce these two laws here, but to keep things simple we will only consider resistor networks with direct current (dc) or ideal battery sources Kirchoff s Voltage Law The sum of voltage drops (or rises) around a closed loop in a circuit (without any independent current sources in series) is zero. The voltage drop across a resistive element is the current through the element times the element resistance, e.g. ohms law i v + - R Ohms Law v ir Chapter 5: Problem Solving Applied: Electrical Circuit Analysis 5 4

15 A simple application: v R R 2 i + - Kirchoff s voltage law applied to the single loop current gives v + R i + R 2 i 0 i or ( R + R 2 )i v Kirchoff s Current Law The sum of currents leaving (or entering) a node in a circuit (without any independent voltage sources attached) is zero. Again ohm s law comes in handy A Simple Example: v + - R v 2 + R 2 - Chapter 5: Problem Solving Applied: Electrical Circuit Analysis 5 5

16 Kirchoff s current law applied to node voltage or ( v 2 v ) R ( v 2 0) R 2 v 2 gives (assume v v v R R 2 R is known) Example: A three loop current network with five resistors and two voltage sources. R R 3 R 5 v + - R 2 R 4 i2 i i v 2 Here we have three loops, hence we can write three equations to solve for the three unknowns i, i 2, and i 3 The first loop equation has a voltage source and two resistors; the resistor R 2 has current i flowing from top to bottom and current i 2 flowing from bottom to top v + R i + ( i i 2 )R 2 0 or ( R + R 2 )i R 2 i 2 v (5.2) Chapter 5: Problem Solving Applied: Electrical Circuit Analysis 5 6

17 The second loop equation involves three resistors, but all three loop currents appear in the equation ( i 2 i )R 2 + i 2 R 3 + ( i 2 i 3 )R 4 0 or R 2 i + ( R 2 + R 3 + R 4 )i 2 R 4 i 3 0 (5.3) The third loop equation as with the first involves a voltage source and two resistors ( i 3 i 2 )R 4 + i 3 R 5 + v 2 0 or R 4 i 2 + ( R 4 + R 5 )i 3 v 2 (5.4) Putting (5.2 4) together in matrix form we have ( R + R 2 ) R 2 0 R 2 ( R 2 + R 3 + R 4 ) R 4 i i 2 v 0 (5.5) 0 R 4 ( R 4 + R 5 ) i 3 v 2. Problem Statement: Solve (5.5) for the mesh currents i, i 2, and i 3 given as inputs the resistor values R through R 5 and the voltages v and v 2 Chapter 5: Problem Solving Applied: Electrical Circuit Analysis 5 7

18 2. Input/Output Description: The I/O diagram is shown below Resistor Values Voltage Source Values MATLAB Solution 3. Hand Calculation: For a hand calculation assume that R R 2 R 3 R 4 R 5 ohm Mesh Currents v 5 volts and v 2 6 volts We must solve i i 2 i We solve this using MATLAB s left division command and then check the solution by computing the error» A [2-0; - 3 -; 0-2];» B [5; 0; 6];» X A\B X % Units of amps % Units of amps % Units of amps Chapter 5: Problem Solving Applied: Electrical Circuit Analysis 5 8

19 » Error sum(a*x-b) Error e-05 % Very small 4. MATLAB Solution: A script will be written which prompts the user to supply the five resistor values followed by the two voltage values. % Three-loop Circuit, three_loop.m % Five resistors and two voltage sources % % Prompt user to enter resistor values: R input('enter [R R2... R5] in ohms--> '); % Prompt user to enter voltage source values: V input('enter voltage values [v v2] in volts--> '); % Fill the A matrix and the B vector: A [R()+R(2) -R(2) 0; -R(2) R(2)+R(3)+R(4) -R(4); 0 -R(4) R(4)+R(5)]; B [V(); 0; -V(2)]; % Make sure solution is not singular if rank(a) 3 fprintf('the mesh currents in amps are: \n'); i A\B else fprintf('the solution is not unique'); end % Were Done! Chapter 5: Problem Solving Applied: Electrical Circuit Analysis 5 9

20 5. Test Results: First check out the hand calculated value» three_loop Enter [R R2... R5] in ohms--> [ ] Enter voltage values [v v2] in volts--> [5-6] The mesh currents in amps are: i <<--Values all agree with hand calculation Try different resistor values and turn voltage source» three_loop Enter [R R2... R5] in ohms--> [ ] Enter voltage values [v v2] in volts--> [5 0] The mesh currents in amps are: v 2 off. i % All currents in amps 0.409» % Check the solution error» Error sum(a*i-b) % better check sum(abs(a*i-b)) Error.02e-05 % Small so solution seems reasonable Chapter 5: Problem Solving Applied: Electrical Circuit Analysis 5 20

21 Example: The circuit of text problem 4 (text Fig. 5.5) worked with node voltages. R R 2 v R 3 v 2 v a + - R 4 R 5 Reference Node The circuit of text Figure 5.5 as shown above contains three loops, yet only two node voltages (excluding the ground or reference node) Using node voltages we can solve for all the quantities of interest by only writing two equations for node voltages as opposed to three current equations At node ( v ) we have ( v v a ) v ( v v 2 ) R 2 R 4 R 3 Chapter 5: Problem Solving Applied: Electrical Circuit Analysis 5 2

22 or v -----v 2 R 2 R 3 R 4 R 3 v a R 2 (5.6) At node 2 ( v 2 ) we have ( v 2 v a ) ( v v ) v or R R 3 R v R v2 R R 3 R 5 v a R (5.7) In matrix form (5.6) and (5.7) become R 2 R R 3 R R R R 3 R 5 v v 2 v a R 2 v a R (5.8) Chapter 5: Problem Solving Applied: Electrical Circuit Analysis 5 22

Review of Ohm's Law: The potential drop across a resistor is given by Ohm's Law: V= IR where I is the current and R is the resistance.

Review of Ohm's Law: The potential drop across a resistor is given by Ohm's Law: V= IR where I is the current and R is the resistance. DC Circuits Objectives The objectives of this lab are: 1) to construct an Ohmmeter (a device that measures resistance) using our knowledge of Ohm's Law. 2) to determine an unknown resistance using our

More information

Exercise 2: Kirchhoff s Current Law/2 Sources

Exercise 2: Kirchhoff s Current Law/2 Sources Exercise 2: Kirchhoff s Current Law/2 Sources EXERCISE OBJECTIVE When you have completed this exercise, you will be able to apply Kirchhoff s current law to a circuit having two voltage sources. You will

More information

LABORATORY 4 ELECTRIC CIRCUITS I. Objectives

LABORATORY 4 ELECTRIC CIRCUITS I. Objectives LABORATORY 4 ELECTRIC CIRCUITS I Objectives to be able to discuss potential difference and current in a circuit in terms of electric field, work per unit charge and motion of charges to understand that

More information

AP PHYSICS C: ELECTRICITY AND MAGNETISM 2015 SCORING GUIDELINES

AP PHYSICS C: ELECTRICITY AND MAGNETISM 2015 SCORING GUIDELINES AP PHYSICS C: ELECTRICITY AND MAGNETISM 2015 SCORING GUIDELINES Question 2 15 points total Distribution of points (a) i. 2 points Using Ohm s law: V = IR For a correct application of Kirchhoff s loop rule

More information

Experiment #6. Thevenin Equivalent Circuits and Power Transfer

Experiment #6. Thevenin Equivalent Circuits and Power Transfer Experiment #6 Thevenin Equivalent Circuits and Power Transfer Objective: In this lab you will confirm the equivalence between a complicated resistor circuit and its Thevenin equivalent. You will also learn

More information

Fig. 1-1 Current Flow in a Resistive load

Fig. 1-1 Current Flow in a Resistive load 1 Electric Circuits: Current flow in a resistive load flows either from (-) to () which is labeled below as Electron flow or the Conventional flow from () to (-). We will use conventional flow in this

More information

Chapter 2. Engr228 Circuit Analysis. Dr Curtis Nelson

Chapter 2. Engr228 Circuit Analysis. Dr Curtis Nelson Chapter 2 Engr228 Circuit Analysis Dr Curtis Nelson Chapter 2 Objectives Understand symbols and behavior of the following circuit elements: Independent voltage and current sources; Dependent voltage and

More information

FF505 Computational Science. Matrix Calculus. Marco Chiarandini

FF505 Computational Science. Matrix Calculus. Marco Chiarandini FF505 Computational Science Matrix Calculus Marco Chiarandini (marco@imada.sdu.dk) Department of Mathematics and Computer Science (IMADA) University of Southern Denmark Resume MATLAB, numerical computing

More information

Chapter 8: Linear Algebraic Equations

Chapter 8: Linear Algebraic Equations Chapter 8: Linear Algebraic Equations Matrix Methods for Linear Equations Uniqueness and Existence of Solutions Under-Determined Systems Over-Determined Systems Linear Algebraic Equations For 2 Equations

More information

POLYTECHNIC UNIVERSITY Electrical Engineering Department. EE SOPHOMORE LABORATORY Experiment 2 DC circuits and network theorems

POLYTECHNIC UNIVERSITY Electrical Engineering Department. EE SOPHOMORE LABORATORY Experiment 2 DC circuits and network theorems POLYTECHNIC UNIVERSITY Electrical Engineering Department EE SOPHOMORE LABORATORY Experiment 2 DC circuits and network theorems Modified for Physics 18, Brooklyn College I. Overview of Experiment In this

More information

INTRODUCTION TO ELECTRONICS

INTRODUCTION TO ELECTRONICS INTRODUCTION TO ELECTRONICS Basic Quantities Voltage (symbol V) is the measure of electrical potential difference. It is measured in units of Volts, abbreviated V. The example below shows several ways

More information

Engineering Fundamentals and Problem Solving, 6e

Engineering Fundamentals and Problem Solving, 6e Engineering Fundamentals and Problem Solving, 6e Chapter 17 Electrical Circuits Chapter Objectives Compute the equivalent resistance of resistors in series and in parallel Apply Ohm s law to a resistive

More information

Chapter - 1 Direct Current Circuits

Chapter - 1 Direct Current Circuits Chapter - 1 Direct Current Circuits RESISTANCE KIRKOFFS LAW and LOOP-MESH METHOD VOLTAGE DIVIDER INTERNAL RESISTANCE and OUTPUT IMPEDANCE HOW TO MEASURE OUTPUT IMPEDANCE OF A DEVICE THEVENIN's THEOREM

More information

52 VOLTAGE, CURRENT, RESISTANCE, AND POWER

52 VOLTAGE, CURRENT, RESISTANCE, AND POWER 52 VOLTAGE, CURRENT, RESISTANCE, AND POWER 1. What is voltage, and what are its units? 2. What are some other possible terms for voltage? 3. Batteries create a potential difference. The potential/voltage

More information

Lecture Notes on DC Network Theory

Lecture Notes on DC Network Theory Federal University, Ndufu-Alike, Ikwo Department of Electrical/Electronics and Computer Engineering (ECE) Faculty of Engineering and Technology Lecture Notes on DC Network Theory Harmattan Semester by

More information

resistance in the circuit. When voltage and current values are known, apply Ohm s law to determine circuit resistance. R = E/I ( )

resistance in the circuit. When voltage and current values are known, apply Ohm s law to determine circuit resistance. R = E/I ( ) DC Fundamentals Ohm s Law Exercise 1: Ohm s Law Circuit Resistance EXERCISE OBJECTIVE When you have completed this exercise, you will be able to determine resistance by using Ohm s law. You will verify

More information

Clicker Session Currents, DC Circuits

Clicker Session Currents, DC Circuits Clicker Session Currents, DC Circuits Wires A wire of resistance R is stretched uniformly (keeping its volume constant) until it is twice its original length. What happens to the resistance? 1) it decreases

More information

09-Circuit Theorems Text: , 4.8. ECEGR 210 Electric Circuits I

09-Circuit Theorems Text: , 4.8. ECEGR 210 Electric Circuits I 09Circuit Theorems Text: 4.1 4.3, 4.8 ECEGR 210 Electric Circuits I Overview Introduction Linearity Superposition Maximum Power Transfer Dr. Louie 2 Introduction Nodal and mesh analysis can be tedious

More information

Electricity & Magnetism

Electricity & Magnetism Electricity & Magnetism D.C. Circuits Marline Kurishingal Note : This chapter includes only D.C. In AS syllabus A.C is not included. Recap... Electrical Circuit Symbols : Draw and interpret circuit diagrams

More information

Series & Parallel Resistors 3/17/2015 1

Series & Parallel Resistors 3/17/2015 1 Series & Parallel Resistors 3/17/2015 1 Series Resistors & Voltage Division Consider the single-loop circuit as shown in figure. The two resistors are in series, since the same current i flows in both

More information

Chapter 8 Linear Algebraic Equations

Chapter 8 Linear Algebraic Equations PowerPoint to accompany Introduction to MATLAB for Engineers, Third Edition William J. Palm III Chapter 8 Linear Algebraic Equations Copyright 2010. The McGraw-Hill Companies, Inc. This work is only for

More information

Numerical Methods Lecture 2 Simultaneous Equations

Numerical Methods Lecture 2 Simultaneous Equations CGN 42 - Computer Methods Numerical Methods Lecture 2 Simultaneous Equations Topics: matrix operations solving systems of equations Matrix operations: Adding / subtracting Transpose Multiplication Adding

More information

+ MATRIX VARIABLES AND TWO DIMENSIONAL ARRAYS

+ MATRIX VARIABLES AND TWO DIMENSIONAL ARRAYS + MATRIX VARIABLES AND TWO DIMENSIONAL ARRAYS Matrices are organized rows and columns of numbers that mathematical operations can be performed on. MATLAB is organized around the rules of matrix operations.

More information

EE-201 Review Exam I. 1. The voltage Vx in the circuit below is: (1) 3V (2) 2V (3) -2V (4) 1V (5) -1V (6) None of above

EE-201 Review Exam I. 1. The voltage Vx in the circuit below is: (1) 3V (2) 2V (3) -2V (4) 1V (5) -1V (6) None of above EE-201, Review Probs Test 1 page-1 Spring 98 EE-201 Review Exam I Multiple Choice (5 points each, no partial credit.) 1. The voltage Vx in the circuit below is: (1) 3V (2) 2V (3) -2V (4) 1V (5) -1V (6)

More information

Outline. Week 5: Circuits. Course Notes: 3.5. Goals: Use linear algebra to determine voltage drops and branch currents.

Outline. Week 5: Circuits. Course Notes: 3.5. Goals: Use linear algebra to determine voltage drops and branch currents. Outline Week 5: Circuits Course Notes: 3.5 Goals: Use linear algebra to determine voltage drops and branch currents. Components in Resistor Networks voltage source current source resistor Components in

More information

9. Introduction and Chapter Objectives

9. Introduction and Chapter Objectives Real Analog - Circuits 1 Chapter 9: Introduction to State Variable Models 9. Introduction and Chapter Objectives In our analysis approach of dynamic systems so far, we have defined variables which describe

More information

Matrices. A matrix is a method of writing a set of numbers using rows and columns. Cells in a matrix can be referenced in the form.

Matrices. A matrix is a method of writing a set of numbers using rows and columns. Cells in a matrix can be referenced in the form. Matrices A matrix is a method of writing a set of numbers using rows and columns. 1 2 3 4 3 2 1 5 7 2 5 4 2 0 5 10 12 8 4 9 25 30 1 1 Reading Information from a Matrix Cells in a matrix can be referenced

More information

Syllabus and Course Overview!

Syllabus and Course Overview! Electronics Lab! Syllabus and Course Overview! oltage Current and Ohm s Law! Kirchoff s Laws! The oltage Divider! Syllabus and Course Overview! n http://www.stlawu.edu/academics/programs/physics! oltage,

More information

= e = e 3 = = 4.98%

= e = e 3 = = 4.98% PHYS 212 Exam 2 - Practice Test - Solutions 1E In order to use the equation for discharging, we should consider the amount of charge remaining after three time constants, which would have to be q(t)/q0.

More information

Chapter 19 Lecture Notes

Chapter 19 Lecture Notes Chapter 19 Lecture Notes Physics 2424 - Strauss Formulas: R S = R 1 + R 2 +... C P = C 1 + C 2 +... 1/R P = 1/R 1 + 1/R 2 +... 1/C S = 1/C 1 + 1/C 2 +... q = q 0 [1-e -t/(rc) ] q = q 0 e -t/(rc τ = RC

More information

Graphical Solutions of Linear Systems

Graphical Solutions of Linear Systems Graphical Solutions of Linear Systems Consistent System (At least one solution) Inconsistent System (No Solution) Independent (One solution) Dependent (Infinite many solutions) Parallel Lines Equations

More information

UNIT 4 DC EQUIVALENT CIRCUIT AND NETWORK THEOREMS

UNIT 4 DC EQUIVALENT CIRCUIT AND NETWORK THEOREMS UNIT 4 DC EQUIVALENT CIRCUIT AND NETWORK THEOREMS 1.0 Kirchoff s Law Kirchoff s Current Law (KCL) states at any junction in an electric circuit the total current flowing towards that junction is equal

More information

Solution: Based on the slope of q(t): 20 A for 0 t 1 s dt = 0 for 3 t 4 s. 20 A for 4 t 5 s 0 for t 5 s 20 C. t (s) 20 C. i (A) Fig. P1.

Solution: Based on the slope of q(t): 20 A for 0 t 1 s dt = 0 for 3 t 4 s. 20 A for 4 t 5 s 0 for t 5 s 20 C. t (s) 20 C. i (A) Fig. P1. Problem 1.24 The plot in Fig. P1.24 displays the cumulative charge q(t) that has entered a certain device up to time t. Sketch a plot of the corresponding current i(t). q 20 C 0 1 2 3 4 5 t (s) 20 C Figure

More information

Writing Circuit Equations

Writing Circuit Equations 2 C H A P T E R Writing Circuit Equations Objectives By the end of this chapter, you should be able to do the following: 1. Find the complete solution of a circuit using the exhaustive, node, and mesh

More information

CHAPTER D.C. CIRCUITS

CHAPTER D.C. CIRCUITS Solutions--Ch. 16 (D.C. Circuits) CHAPTER 16 -- D.C. CIRCUITS 16.1) Consider the circuit to the right: a.) The voltage drop across R must be zero if there is to be no current through it, which means the

More information

Come & Join Us at VUSTUDENTS.net

Come & Join Us at VUSTUDENTS.net Come & Join Us at VUSTUDENTS.net For Assignment Solution, GDB, Online Quizzes, Helping Study material, Past Solved Papers, Solved MCQs, Current Papers, E-Books & more. Go to http://www.vustudents.net and

More information

Review of Circuit Analysis

Review of Circuit Analysis Review of Circuit Analysis Fundamental elements Wire Resistor Voltage Source Current Source Kirchhoff s Voltage and Current Laws Resistors in Series Voltage Division EE 42 Lecture 2 1 Voltage and Current

More information

Phy301- Circuit Theory

Phy301- Circuit Theory Phy301- Circuit Theory Solved Mid Term MCQS and Subjective with References. Question No: 1 ( Marks: 1 ) - Please choose one If we connect 3 capacitors in series, the combined effect of all these capacitors

More information

Direct Current (DC): In a DC circuit the current and voltage are constant as a function of time. Power (P): Rate of doing work P = dw/dt units = Watts

Direct Current (DC): In a DC circuit the current and voltage are constant as a function of time. Power (P): Rate of doing work P = dw/dt units = Watts Lecture 1: Introduction Some Definitions: Current (I): Amount of electric charge (Q) moving past a point per unit time I dq/dt Coulombs/sec units Amps (1 Coulomb 6x10 18 electrons) oltage (): Work needed

More information

Circuit Analysis and Ohm s Law

Circuit Analysis and Ohm s Law Study Unit Circuit Analysis and Ohm s Law By Robert Cecci Circuit analysis is one of the fundamental jobs of an electrician or electronics technician With the knowledge of how voltage, current, and resistance

More information

Preamble. Circuit Analysis II. Mesh Analysis. When circuits get really complex methods learned so far will still work,

Preamble. Circuit Analysis II. Mesh Analysis. When circuits get really complex methods learned so far will still work, Preamble Circuit Analysis II Physics, 8 th Edition Custom Edition Cutnell & Johnson When circuits get really complex methods learned so far will still work, but they can take a long time to do. A particularly

More information

Calendar Update Energy of Charges Intro to Circuits Ohm s Law Analog Discovery MATLAB What s next?

Calendar Update Energy of Charges Intro to Circuits Ohm s Law Analog Discovery MATLAB What s next? Calendar Update Energy of Charges Intro to Circuits Ohm s Law Analog Discovery MATLAB What s next? Calendar Update http://www.ece.utep.edu/courses/web1305/ee1305/reso urces.html P2 FOLLOW YOUR PROBLEM

More information

Prepare for this experiment!

Prepare for this experiment! Notes on Experiment #8 Theorems of Linear Networks Prepare for this experiment! If you prepare, you can finish in 90 minutes. If you do not prepare, you will not finish even half of this experiment. So,

More information

DC motor / generator. Jeffrey A. Meunier

DC motor / generator. Jeffrey A. Meunier DC motor / generator Jeffrey A. Meunier jeffm@engr.uconn.edu Electric motor An electric motor is used to convert electrical energy into mechanical energy. Electric motor An electric motor is used to convert

More information

EE301 RESISTANCE AND OHM S LAW

EE301 RESISTANCE AND OHM S LAW Learning Objectives a. Describe the concept of resistance b. Use Ohm s law to calculate current, voltage, and resistance values in a circuit c. Discuss the difference between an open circuit and a short

More information

Switch. R 5 V Capacitor. ower upply. Voltmete. Goals. Introduction

Switch. R 5 V Capacitor. ower upply. Voltmete. Goals. Introduction Switch Lab 9. Circuits ower upply Goals + + R 5 V Capacitor V To appreciate the capacitor as a charge storage device. To measure the voltage across a capacitor as it discharges through a resistor, and

More information

ConcepTest PowerPoints

ConcepTest PowerPoints ConcepTest PowerPoints Chapter 19 Physics: Principles with Applications, 6 th edition Giancoli 2005 Pearson Prentice Hall This work is protected by United States copyright laws and is provided solely for

More information

Direct-Current Circuits. Physics 231 Lecture 6-1

Direct-Current Circuits. Physics 231 Lecture 6-1 Direct-Current Circuits Physics 231 Lecture 6-1 esistors in Series and Parallel As with capacitors, resistors are often in series and parallel configurations in circuits Series Parallel The question then

More information

CHARGES IN AN ELECTRIC FIELD

CHARGES IN AN ELECTRIC FIELD CONTENT POTENTIAL ENERGY AND WORK HSC Physics Module 4 Electricity and Magnetism Electric Field Potential energy, Work and Equipotential Lines CHARGES IN AN ELECTRIC FIELD A charge in an electric field

More information

Prepare for this experiment!

Prepare for this experiment! Notes on Experiment #8 Theorems of Linear Networks Prepare for this experiment! If you prepare, you can finish in 90 minutes. If you do not prepare, you will not finish even half of this experiment. So,

More information

Differential Equations and Linear Algebra Supplementary Notes. Simon J.A. Malham. Department of Mathematics, Heriot-Watt University

Differential Equations and Linear Algebra Supplementary Notes. Simon J.A. Malham. Department of Mathematics, Heriot-Watt University Differential Equations and Linear Algebra Supplementary Notes Simon J.A. Malham Department of Mathematics, Heriot-Watt University Contents Chapter 1. Linear algebraic equations 5 1.1. Gaussian elimination

More information

Greek Letter Omega Ω = Ohm (Volts per Ampere)

Greek Letter Omega Ω = Ohm (Volts per Ampere) ) What is electric current? Flow of Electric Charge 2) What is the unit we use for electric current? Amperes (Coulombs per Second) 3) What is electrical resistance? Resistance to Electric Current 4) What

More information

January 18, 2008 Steve Gu. Reference: Eta Kappa Nu, UCLA Iota Gamma Chapter, Introduction to MATLAB,

January 18, 2008 Steve Gu. Reference: Eta Kappa Nu, UCLA Iota Gamma Chapter, Introduction to MATLAB, Introduction to MATLAB January 18, 2008 Steve Gu Reference: Eta Kappa Nu, UCLA Iota Gamma Chapter, Introduction to MATLAB, Part I: Basics MATLAB Environment Getting Help Variables Vectors, Matrices, and

More information

Notes on Electricity (Circuits)

Notes on Electricity (Circuits) A circuit is defined to be a collection of energy-givers (batteries) and energy-takers (resistors, light bulbs, radios, etc.) that form a closed path (or complete path) through which electrical current

More information

6. MESH ANALYSIS 6.1 INTRODUCTION

6. MESH ANALYSIS 6.1 INTRODUCTION 6. MESH ANALYSIS INTRODUCTION PASSIVE SIGN CONVENTION PLANAR CIRCUITS FORMATION OF MESHES ANALYSIS OF A SIMPLE CIRCUIT DETERMINANT OF A MATRIX CRAMER S RULE GAUSSIAN ELIMINATION METHOD EXAMPLES FOR MESH

More information

Physics 3150, Laboratory X January 22, 2014 Ann Onymous (lab partner: John Doe)

Physics 3150, Laboratory X January 22, 2014 Ann Onymous (lab partner: John Doe) A. Procedure and Results Physics 150, Laboratory X January, 01 Ann Onymous (lab partner: John Doe) A.1. Voltage and current for a resistor bridge We constructed a resistor bridge circuit as indicated in

More information

Q-2 How many coulombs of charge leave the power supply during each second?

Q-2 How many coulombs of charge leave the power supply during each second? Part I - Circuit Elements in Series In Figure 1 at the right circuit elements #1, #2, #3 (in this case light bulbs) are said to be connected "IN SERIES". That is, they are connected in a series one right

More information

3-3 Complex Numbers. Simplify. SOLUTION: 2. SOLUTION: 3. (4i)( 3i) SOLUTION: 4. SOLUTION: 5. SOLUTION: esolutions Manual - Powered by Cognero Page 1

3-3 Complex Numbers. Simplify. SOLUTION: 2. SOLUTION: 3. (4i)( 3i) SOLUTION: 4. SOLUTION: 5. SOLUTION: esolutions Manual - Powered by Cognero Page 1 1. Simplify. 2. 3. (4i)( 3i) 4. 5. esolutions Manual - Powered by Cognero Page 1 6. 7. Solve each equation. 8. Find the values of a and b that make each equation true. 9. 3a + (4b + 2)i = 9 6i Set the

More information

Consider the following generalized simple circuit

Consider the following generalized simple circuit ntroduction to Circuit Analysis Getting Started We analyze circuits for several reasons Understand how they work Learn how to design from other people s work Debug our own designs Troubleshoot circuit

More information

Power lines. Why do birds sitting on a high-voltage power line survive?

Power lines. Why do birds sitting on a high-voltage power line survive? Power lines At large distances, the resistance of power lines becomes significant. To transmit maximum power, is it better to transmit high V, low I or high I, low V? (a) high V, low I (b) low V, high

More information

COOKBOOK KVL AND KCL A COMPLETE GUIDE

COOKBOOK KVL AND KCL A COMPLETE GUIDE 1250 COOKBOOK KVL AND KCL A COMPLETE GUIDE Example circuit: 1) Label all source and component values with a voltage drop measurement (+,- ) and a current flow measurement (arrow): By the passive sign convention,

More information

Analysis of Mesh Circuit Using Linear Algebra

Analysis of Mesh Circuit Using Linear Algebra Analysis of Mesh Circuit Using Linear Algebra Submitted By: Md. Anowar Hossain Researcher No: 75654 Submitted To: Dr. Yacine Benhadid 1 Abstract An interesting application of linear algebra can be found

More information

DC CIRCUIT ANALYSIS. Loop Equations

DC CIRCUIT ANALYSIS. Loop Equations All of the rules governing DC circuits that have been discussed so far can now be applied to analyze complex DC circuits. To apply these rules effectively, loop equations, node equations, and equivalent

More information

Circuits. PHY2054: Chapter 18 1

Circuits. PHY2054: Chapter 18 1 Circuits PHY2054: Chapter 18 1 What You Already Know Microscopic nature of current Drift speed and current Ohm s law Resistivity Calculating resistance from resistivity Power in electric circuits PHY2054:

More information

4.2 Graphs of Rational Functions

4.2 Graphs of Rational Functions 4.2. Graphs of Rational Functions www.ck12.org 4.2 Graphs of Rational Functions Learning Objectives Compare graphs of inverse variation equations. Graph rational functions. Solve real-world problems using

More information

Fundamentals of Electric Circuits, Second Edition - Alexander/Sadiku

Fundamentals of Electric Circuits, Second Edition - Alexander/Sadiku Chapter 3, Problem 9(8). Find V x in the network shown in Fig. 3.78. Figure 3.78 Chapter 3, Solution 9(8). Consider the circuit below. 2 Ω 2 Ω -j 8 30 o I j 4 j 4 I 2 -j2v For loop, 8 30 = (2 j4)i ji 2

More information

STEAM Clown Production. Series Circuits. STEAM Clown & Productions Copyright 2017 STEAM Clown. Page 2

STEAM Clown Production. Series Circuits. STEAM Clown & Productions Copyright 2017 STEAM Clown. Page 2 Production Series Circuits Page 2 Copyright 2017 Series Parallel Circuits + + SERIES CIRCUIT PARALLEL CIRCUIT Page 3 Copyright 2017 Trick to Remember Ohm s Law V V=I*R R = V I I R I = V R Page 4 Copyright

More information

Ohm's Law and Resistance

Ohm's Law and Resistance Ohm's Law and Resistance Resistance Resistance is the property of a component which restricts the flow of electric current. Energy is used up as the voltage across the component drives the current through

More information

DC STEADY STATE CIRCUIT ANALYSIS

DC STEADY STATE CIRCUIT ANALYSIS DC STEADY STATE CIRCUIT ANALYSIS 1. Introduction The basic quantities in electric circuits are current, voltage and resistance. They are related with Ohm s law. For a passive branch the current is: I=

More information

Ch 28-DC Circuits! 1.) EMF & Terminal Voltage! 9.0 V 8.7 V 8.7 V. V =! " Ir. Terminal Open circuit internal! voltage voltage (emf) resistance" 2.

Ch 28-DC Circuits! 1.) EMF & Terminal Voltage! 9.0 V 8.7 V 8.7 V. V =!  Ir. Terminal Open circuit internal! voltage voltage (emf) resistance 2. Ch 28-DC Circuits! 1.) EMF & Terminal Voltage! 9.0 V 8.7 V 8.7 V V =! " Ir Terminal Open circuit internal! voltage voltage (emf) resistance" 2.) Resistors in series! One of the bits of nastiness about

More information

What to Add Next time you update?

What to Add Next time you update? What to Add Next time you update? Work sheet with 3 and 4 resistors Create worksheet of tables Add Hypothesis and Questions Add Lab and Lecture Objectives Add equipment needed Add science standards Review

More information

US ARMY INTELLIGENCE CENTER CIRCUITS

US ARMY INTELLIGENCE CENTER CIRCUITS SUBCOURSE IT 0334 EDITION C US ARMY INTELLIGENCE CENTER CIRCUITS CIRCUITS Subcourse Number IT0334 EDITION C US ARMY INTELLIGENCE CENTER FORT HUACHUCA, AZ 85613-6000 4 Credit Hours Edition Date: December

More information

Series/Parallel Circuit Simplification: Kirchoff, Thevenin & Norton

Series/Parallel Circuit Simplification: Kirchoff, Thevenin & Norton Series/Parallel Circuit Simplification: Kirchoff, Thevenin & Norton Session 1d of Basic Electricity A Fairfield University E-Course Powered by LearnLinc Basic Electricity Two Parts Electron Flow and Resistance

More information

The General Resistor Circuit Problem

The General Resistor Circuit Problem The General Resistor Circuit Problem We re now ready to attack the general resistor circuit problem that may have many sources of EMF, many resistors, and many loops. Remember, the basic laws that we ll

More information

Active loads in amplifier circuits

Active loads in amplifier circuits Active loads in amplifier circuits This worksheet and all related files are licensed under the Creative Commons Attribution License, version 1.0. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/,

More information

MAE140 HW3 Solutions

MAE140 HW3 Solutions MAE40 HW Solutions.7) Method: Remove load resistor and find Thevenin equivalent circuit VOC 600 450 00 450 To find Isc, use a voltage divider at a a 00 450 00 450 00 600 0 0 900 6 Isc Isc 00 6*00 00 Amps

More information

B.3 Solving Equations Algebraically and Graphically

B.3 Solving Equations Algebraically and Graphically B.3 Solving Equations Algebraically and Graphically 1 Equations and Solutions of Equations An equation in x is a statement that two algebraic expressions are equal. To solve an equation in x means to find

More information

ES250: Electrical Science. HW1: Electric Circuit Variables, Elements and Kirchhoff s Laws

ES250: Electrical Science. HW1: Electric Circuit Variables, Elements and Kirchhoff s Laws ES250: Electrical Science HW1: Electric Circuit Variables, Elements and Kirchhoff s Laws Introduction Engineers use electric circuits to solve problems that are important to modern society, such as: 1.

More information

7.6 The Inverse of a Square Matrix

7.6 The Inverse of a Square Matrix 7.6 The Inverse of a Square Matrix Copyright Cengage Learning. All rights reserved. What You Should Learn Verify that two matrices are inverses of each other. Use Gauss-Jordan elimination to find inverses

More information

CHAPTER FOUR CIRCUIT THEOREMS

CHAPTER FOUR CIRCUIT THEOREMS 4.1 INTRODUCTION CHAPTER FOUR CIRCUIT THEOREMS The growth in areas of application of electric circuits has led to an evolution from simple to complex circuits. To handle the complexity, engineers over

More information

Exercise 2: The DC Ohmmeter

Exercise 2: The DC Ohmmeter Exercise 2: The DC Ohmmeter EXERCISE OBJECTIVE When you have completed this exercise, you will be able to measure resistance by using a basic meter movement. You will verify ohmmeter operation by measuring

More information

Chapter 10 AC Analysis Using Phasors

Chapter 10 AC Analysis Using Phasors Chapter 10 AC Analysis Using Phasors 10.1 Introduction We would like to use our linear circuit theorems (Nodal analysis, Mesh analysis, Thevenin and Norton equivalent circuits, Superposition, etc.) to

More information

Coulomb s constant k = 9x10 9 N m 2 /C 2

Coulomb s constant k = 9x10 9 N m 2 /C 2 1 Part 2: Electric Potential 2.1: Potential (Voltage) & Potential Energy q 2 Potential Energy of Point Charges Symbol U mks units [Joules = J] q 1 r Two point charges share an electric potential energy

More information

Physics 102: Lecture 06 Kirchhoff s Laws

Physics 102: Lecture 06 Kirchhoff s Laws Physics 102: Lecture 06 Kirchhoff s Laws Physics 102: Lecture 6, Slide 1 Today Last Lecture Last Time Resistors in series: R eq = R 1 R 2 R 3 Current through each is same; Voltage drop is IR i Resistors

More information

Voltage Dividers, Nodal, and Mesh Analysis

Voltage Dividers, Nodal, and Mesh Analysis Engr228 Lab #2 Voltage Dividers, Nodal, and Mesh Analysis Name Partner(s) Grade /10 Introduction This lab exercise is designed to further your understanding of the use of the lab equipment and to verify

More information

Gr. 11 Physics Electricity

Gr. 11 Physics Electricity Gr. 11 Physics Electricity This chart contains a complete list of the lessons and homework for Gr. 11 Physics. Please complete all the worksheets and problems listed under Homework before the next class.

More information

Agenda for Today. Elements of Physics II. Resistance Resistors Series Parallel Ohm s law Electric Circuits. Current Kirchoff s laws

Agenda for Today. Elements of Physics II. Resistance Resistors Series Parallel Ohm s law Electric Circuits. Current Kirchoff s laws Resistance Resistors Series Parallel Ohm s law Electric Circuits Physics 132: Lecture e 17 Elements of Physics II Current Kirchoff s laws Agenda for Today Physics 201: Lecture 1, Pg 1 Clicker Question

More information

Basic Linear Algebra in MATLAB

Basic Linear Algebra in MATLAB Basic Linear Algebra in MATLAB 9.29 Optional Lecture 2 In the last optional lecture we learned the the basic type in MATLAB is a matrix of double precision floating point numbers. You learned a number

More information

Chapter 7 Direct-Current Circuits

Chapter 7 Direct-Current Circuits Chapter 7 Direct-Current Circuits 7. Introduction... 7. Electromotive Force... 7.3 Resistors in Series and in Parallel... 4 7.4 Kirchhoff s Circuit Rules... 6 7.5 Voltage-Current Measurements... 8 7.6

More information

Rectangular Systems and Echelon Forms

Rectangular Systems and Echelon Forms CHAPTER 2 Rectangular Systems and Echelon Forms 2.1 ROW ECHELON FORM AND RANK We are now ready to analyze more general linear systems consisting of m linear equations involving n unknowns a 11 x 1 + a

More information

Elementary Theory of DC Permanent Magnet Motors

Elementary Theory of DC Permanent Magnet Motors Much appreciation to David Cowden at Ga. Tech.: Web citation from 10/15/2004 http://www.srl.gatech.edu/education/me3110/primer/motors.htm Motors Introduction This section contains information about implementing

More information

ECE Homework Set 2

ECE Homework Set 2 1 Solve these problems after Lecture #4: Homework Set 2 1. Two dice are tossed; let X be the sum of the numbers appearing. a. Graph the CDF, FX(x), and the pdf, fx(x). b. Use the CDF to find: Pr(7 X 9).

More information

Brian Blais Quick Homemade Guide to Circuits

Brian Blais Quick Homemade Guide to Circuits Brian Blais Quick Homemade Guide to Circuits 1 Initial Equations and Concepts Current, I. Units:amps rate of flow of charge: I = Q/ t Potential difference, V. Units: volts esistance,. Units:ohms Ohm s

More information

18.06 Problem Set 1 - Solutions Due Wednesday, 12 September 2007 at 4 pm in

18.06 Problem Set 1 - Solutions Due Wednesday, 12 September 2007 at 4 pm in 18.6 Problem Set 1 - Solutions Due Wednesday, 12 September 27 at 4 pm in 2-16. Problem : from the book.(5=1+1+1+1+1) (a) problem set 1.2, problem 8. (a) F. A Counterexample: u = (1,, ), v = (, 1, ) and

More information

Physics for Scientists & Engineers 2

Physics for Scientists & Engineers 2 Review The resistance R of a device is given by Physics for Scientists & Engineers 2 Spring Semester 2005 Lecture 8 R =! L A ρ is resistivity of the material from which the device is constructed L is the

More information

Experiment 4. RC Circuits. Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor.

Experiment 4. RC Circuits. Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor. Experiment 4 RC Circuits 4.1 Objectives Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor. Graphically determine the time constant τ for the decay. 4.2

More information

Simple Resistive Circuits

Simple Resistive Circuits German Jordanian University (GJU) Electrical Circuits Laboratory Section 3 Experiment Simple Resistive Circuits Post lab Report Mahmood Hisham Shubbak 7 / / 8 Objectives: To learn how to use the Unitr@in

More information

Activity 1: Investigating Temperature

Activity 1: Investigating Temperature Contents Activity Overview... 5 Quick Start Guide... 5 Software Installation... 5 Hardware Setup... 6 mytemp Getting Started Program... 10 General Tips and Tricks... 11 Activity 1: Investigating Temperature...

More information

MATH 1130 Exam 1 Review Sheet

MATH 1130 Exam 1 Review Sheet MATH 1130 Exam 1 Review Sheet The Cartesian Coordinate Plane The Cartesian Coordinate Plane is a visual representation of the collection of all ordered pairs (x, y) where x and y are real numbers. This

More information

Electrical Engineering Fundamentals for Non-Electrical Engineers

Electrical Engineering Fundamentals for Non-Electrical Engineers Electrical Engineering Fundamentals for Non-Electrical Engineers by Brad Meyer, PE Contents Introduction... 3 Definitions... 3 Power Sources... 4 Series vs. Parallel... 9 Current Behavior at a Node...

More information