Analysis of Mesh Circuit Using Linear Algebra

Size: px
Start display at page:

Download "Analysis of Mesh Circuit Using Linear Algebra"

Transcription

1 Analysis of Mesh Circuit Using Linear Algebra Submitted By: Md. Anowar Hossain Researcher No: Submitted To: Dr. Yacine Benhadid 1

2 Abstract An interesting application of linear algebra can be found in electrical engineering and specifically electrical networks. I have found that linear algebra is a useful tool in analyzing electric circuits in terms of organization and saving time. In this report, I have included examples how to analyze a circuit using linear algebra and solved it by using Gaussian Elimination, LU Decomposition and SOR (Successive Over Relaxation) method and determined Eigenvalues and Eigenvectors using Shifted Inverse Power method, Deflation method and Jacobi method. Background A simple electric circuit consists of voltage sources, wire with current running through it, and various types of resistors that cause a voltage drop in the circuit. In order to tell how much the voltage drops across a resistor, one must use Ohm s law. This law simply states that V = IR Where, V = Voltage across the resistor (volts), I = Current through the resistor (amperes) and R = Resistance of the resistor (ohms). When analyzing an electric circuit, there are many techniques that may be used. One simple technique uses the idea of Kirchhoff s voltage law (KVL). Kirchhoff s voltage law states that the algebraic sum of the voltages around any closed path in a circuit is identically zero for all time. In order to use Kirchhoff s voltage law, the method of mesh current analysis must be used to examine the circuit. In order to analyze the circuit, Kirchhoff s voltage law must be applied to each mesh. It is important to note that if a resistor is shared by two meshes, the voltage across this resistor is (current in mesh being analyzed current in other mesh) x (resistance).

3 After summing the voltages around a circuit with 5 meshes, there will be 5 equations with 5 unknowns. One way to solve this would be to solve each equation in terms of one variable and then substitute into the others. This method would work, but would be far too time consuming. This is where linear algebra comes in. Using Ohm s law, each equation can be written in the form RI = V (similar to Ax = b). Putting these equations into matrices and solve for each current by using the matrix equation RI = V. By solving the augmented matrix, values of I 1, I 2, I 3, I 4 and I 5 can be found. The matrix equation can be very useful when large circuits with many loops are to be analyzed. In order to analyze the simple circuit below (find the amount of current flowing in each loop), the technique of mesh analysis will be combined with the use of linear algebra. Model Circuit

4 The equations in the model are given by: Mesh 1: I 1 R 1 + (I 1 I 2 ) R 6 + (I 1 I 4 ) R 7 = V Mesh 2: (I 2 - I 1 ) R 6 + I 2 R 2 + (I 2 - I 3 ) R 5 = 0 Mesh 3: I 3 R 3 + I 3 R 4 + (I 3 I 2 ) R 5 = 0 Mesh 4: (I 4 I 1 ) R 7 + (I 4 I 5 ) R 4 + I 4 R 10 + I 4 R 8 = 0 Mesh 5: (I 5 I 4 ) R 4 + I 5 R 11 = 0 V = 120V, R1 = 2, R2 = 5, R3 = 2, R4 = 4, R5 = 3, R6 = 1 R7 = 3 R8 = 6 R9 = 5 R10 = 2 R11 = 8 Step 1: The first step in solving this problem is to write the sum of voltages around each loop. (In this case, I arbitrarily choose current direction as clockwise). The voltage sums of each loop must equal zero, thus giving the following equations: Mesh 1: 6I 1 I 2 + 0I 3 3I 4 + 0I 5 = 120 Mesh 2: -I 1 + 9I 2-3I 3 + 0I 4 + 0I 5 = 0 Mesh 3: 0I 1 3I 2 + 9I 3 + 0I 4 + 0I 5 = 0 Mesh 4: -3I 1 + 0I 2 + 0I I 4-4I 5 = 0 Mesh 5: 0I 1 + 0I 2 + 0I 3 5I I 5 = 0 Step 2: Putting the five equations into matrix form Ax = b. In this case, values of resistance will make up the coefficient matrix, current will be the unknown x, and voltages will be the product of resistances and currents. The three equations from above will have the form RI = V. Once the mesh equations are put into matrices, they will look like: I I I 3 = I I 5 0

5 Solving the system using Gaussian Elimination: Ab = >> Ab=[ ; ; ; ; ]; >> gauss(ab) Which gives upper triangular matrix, M = Using backward substitution, gives the solution: I 1 = A, I 2 = A, I 3 = A, I 4 = A, I 5 = A

6 Solving the system using LU Decomposition A = >>A=[ ; ; ; ; ]; >>LU(A) = L = U

7 Using Ly=b and Ux=y y y y 3 = y y 5 0 >>b=[120;0;0;0;0]; >>y=inv(l)*b Gives the solution, y 1 = 120 y 2 = 20 y 3 = y 4 = y 5 = I I I 3 = I I

8 >>I=inv(U)*y Gives the solution, I 1 = A I 2 = A I 3 = A I 4 = A I 5 = A Solving the System using SOR method A = b = >> A=[ ; ; ; ; ]; >> b=[120;0;0;0;0]; >> N=100; >> sor(a, b, N) It gives the solution on 7 iterations (W = )- I 1 = A I 2 = A I 3 = A I 4 = A I 5 = A

9 Finding Eigenvalues and Eigenvectors: Eigenvalues of matrix A are: Power Method: Using an initial vector x 0 = [1,1,1,1,1] T, the approximation of the dominant Eigenvalue of matrix A after 20 iterations is and the corresponding eigenvector is [ , , , , ] T >> A=[ ; ; ; ; ]; >> x=[1,1,1,1,1]'; >> tol=1e-10; >> maxiter=20; >> [lambda,v,relerr,niter] = Powermethod(A,x,tol,maxiter) Inverse Power Method: Using an initial vector x 0 = [0,1,2,3,4] T, the approximation of the dominant Eigenvalue of matrix A -1 after 10 iterations is and the corresponding eigenvector is [0.8294, , , , ] T. >> A=[ ; ; ; ; ]; >> x=[0,1,2,3,4]'; >> tol=1e-10; >> maxiter=10; >> [lambda,v,relerr,niter] = InvPowerMethod(A,x,tol,maxiter) Shifted Inverse Power Method: Using an initial vector x 0 = [1,1,1,1,1] T and µ=6, the approximation of the dominant Eigenvalue of matrix B -1 = (A-µI) -1 after 15 iterations is and the corresponding eigenvector is [ , , , , ] T.

10 Matlab command: >>A=[ ; ; ; ; ]; >> s=19; >> x=[1,1,1,1,1]'; >> tol=1e-10; >> maxiter=15; >> [lambda,v,relerr,niter] = ShiftInvPowerMethod(A,s,x,tol,maxiter) Jacobi Method: Jacobi method gives the matrix D = Its diagonal elements are: Which are the Eigenvalues of the original matrix A. >>A=[ ; ; ; ; ]; >> JOBM(A)

11 Deflation Method: Using the largest Eigenvalue and the corresponding Eigenvector x 1 = [ , , , , ] T, Deflation method gives the following Eigenvalues: and the corresponding eigenvectors are: [ , , , , ] T [0.8414, , , , ] T [ , , , , ] T [ , , , , ] T [ , , , , ] T >> A=[ ; ; ; ; ]; >> Lamda= ; >> XA=[ , , , , ]'; >> DEFLATED(A,Lamda,XA) >>[v,d]=eig(a) Evaluation I think that having knowledge of matrices and linear algebra is extremely valuable in many fields of study. This project was a good chance to find out how useful linear algebra is in many different areas of math and science. The reason I choose only to discuss linear algebra in relation to Kirchhoff s voltage law and mesh current analysis is because I became extremely familiar with mesh current analysis. I wanted to see how linear algebra could relate to and expand my knowledge of a subject I already knew about. I thought this would be more valuable to me, than to learn about a completely new topic that I knew nothing of, and then write a report on that.

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

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

Direct Current Circuits. February 18, 2014 Physics for Scientists & Engineers 2, Chapter 26 1

Direct Current Circuits. February 18, 2014 Physics for Scientists & Engineers 2, Chapter 26 1 Direct Current Circuits February 18, 2014 Physics for Scientists & Engineers 2, Chapter 26 1 Kirchhoff s Junction Rule! The sum of the currents entering a junction must equal the sum of the currents leaving

More information

Module 2. DC Circuit. Version 2 EE IIT, Kharagpur

Module 2. DC Circuit. Version 2 EE IIT, Kharagpur Module DC Circuit Lesson 4 Loop Analysis of resistive circuit in the context of dc voltages and currents Objectives Meaning of circuit analysis; distinguish between the terms mesh and loop. To provide

More information

Lecture #3. Review: Power

Lecture #3. Review: Power Lecture #3 OUTLINE Power calculations Circuit elements Voltage and current sources Electrical resistance (Ohm s law) Kirchhoff s laws Reading Chapter 2 Lecture 3, Slide 1 Review: Power If an element is

More information

Kirchhoff's Laws and Circuit Analysis (EC 2)

Kirchhoff's Laws and Circuit Analysis (EC 2) Kirchhoff's Laws and Circuit Analysis (EC ) Circuit analysis: solving for I and V at each element Linear circuits: involve resistors, capacitors, inductors Initial analysis uses only resistors Power sources,

More information

ECE 1311: Electric Circuits. Chapter 2: Basic laws

ECE 1311: Electric Circuits. Chapter 2: Basic laws ECE 1311: Electric Circuits Chapter 2: Basic laws Basic Law Overview Ideal sources series and parallel Ohm s law Definitions open circuits, short circuits, conductance, nodes, branches, loops Kirchhoff's

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

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

mywbut.com Mesh Analysis

mywbut.com Mesh Analysis Mesh Analysis 1 Objectives Meaning of circuit analysis; distinguish between the terms mesh and loop. To provide more general and powerful circuit analysis tool based on Kirchhoff s voltage law (KVL) only.

More information

Numerical Methods - Numerical Linear Algebra

Numerical Methods - Numerical Linear Algebra Numerical Methods - Numerical Linear Algebra Y. K. Goh Universiti Tunku Abdul Rahman 2013 Y. K. Goh (UTAR) Numerical Methods - Numerical Linear Algebra I 2013 1 / 62 Outline 1 Motivation 2 Solving Linear

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

Numerical Linear Algebra

Numerical Linear Algebra Numerical Linear Algebra Direct Methods Philippe B. Laval KSU Fall 2017 Philippe B. Laval (KSU) Linear Systems: Direct Solution Methods Fall 2017 1 / 14 Introduction The solution of linear systems is one

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

(Linear equations) Applied Linear Algebra in Geoscience Using MATLAB

(Linear equations) Applied Linear Algebra in Geoscience Using MATLAB Applied Linear Algebra in Geoscience Using MATLAB (Linear equations) Contents Getting Started Creating Arrays Mathematical Operations with Arrays Using Script Files and Managing Data Two-Dimensional Plots

More information

Discussion Question 6A

Discussion Question 6A Discussion Question 6 P212, Week 6 Two Methods for Circuit nalysis Method 1: Progressive collapsing of circuit elements In last week s discussion, we learned how to analyse circuits involving batteries

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

Designing Information Devices and Systems I Spring 2018 Lecture Notes Note 11

Designing Information Devices and Systems I Spring 2018 Lecture Notes Note 11 EECS 16A Designing Information Devices and Systems I Spring 2018 Lecture Notes Note 11 11.1 Context Our ultimate goal is to design systems that solve people s problems. To do so, it s critical to understand

More information

Network Analysis V. Mesh Equations Three Loops

Network Analysis V. Mesh Equations Three Loops Network Analysis V Mesh Equations Three Loops Circuit overview A B V1 12 V R1 R3 C R2 R4 I A I B I C D R6 E F R5 R7 R8 G V2 8 V H Using the method of mesh currents, solve for all the unknown values of

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

Today s class. Linear Algebraic Equations LU Decomposition. Numerical Methods, Fall 2011 Lecture 8. Prof. Jinbo Bi CSE, UConn

Today s class. Linear Algebraic Equations LU Decomposition. Numerical Methods, Fall 2011 Lecture 8. Prof. Jinbo Bi CSE, UConn Today s class Linear Algebraic Equations LU Decomposition 1 Linear Algebraic Equations Gaussian Elimination works well for solving linear systems of the form: AX = B What if you have to solve the linear

More information

PHYSICS 171. Experiment 3. Kirchhoff's Laws. Three resistors (Nominally: 1 Kilohm, 2 Kilohm, 3 Kilohm).

PHYSICS 171. Experiment 3. Kirchhoff's Laws. Three resistors (Nominally: 1 Kilohm, 2 Kilohm, 3 Kilohm). PHYSICS 171 Experiment 3 Kirchhoff's Laws Equipment: Supplies: Digital Multimeter, Power Supply (0-20 V.). Three resistors (Nominally: 1 Kilohm, 2 Kilohm, 3 Kilohm). A. Kirchhoff's Loop Law Suppose that

More information

Linear Algebra Math 221

Linear Algebra Math 221 Linear Algebra Math Open Book Exam Open Notes 8 Oct, 004 Calculators Permitted Show all work (except #4). (0 pts) Let A = 3 a) (0 pts) Compute det(a) by Gaussian Elimination. 3 3 swap(i)&(ii) (iii) (iii)+(

More information

30.5. Iterative Methods for Systems of Equations. Introduction. Prerequisites. Learning Outcomes

30.5. Iterative Methods for Systems of Equations. Introduction. Prerequisites. Learning Outcomes Iterative Methods for Systems of Equations 0.5 Introduction There are occasions when direct methods (like Gaussian elimination or the use of an LU decomposition) are not the best way to solve a system

More information

Numerical Linear Algebra

Numerical Linear Algebra Chapter 3 Numerical Linear Algebra We review some techniques used to solve Ax = b where A is an n n matrix, and x and b are n 1 vectors (column vectors). We then review eigenvalues and eigenvectors and

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

UNIVERSITY OF ALABAMA Department of Physics and Astronomy. PH / LeClair Fall Circuits Exercises

UNIVERSITY OF ALABAMA Department of Physics and Astronomy. PH / LeClair Fall Circuits Exercises UNIVERSITY OF ALABAMA Department of Physics and Astronomy PH 106-4 / LeClair Fall 008 Circuits Exercises 1. Are the two headlights of a car wired in series or in parallel? How can you tell? Have you ever

More information

Analysis of a single-loop circuit using the KVL method

Analysis of a single-loop circuit using the KVL method Analysis of a single-loop circuit using the KVL method Figure 1 is our circuit to analyze. We shall attempt to determine the current through each element, the voltage across each element, and the power

More information

Designing Information Devices and Systems II Fall 2016 Murat Arcak and Michel Maharbiz Homework 0. This homework is due August 29th, 2016, at Noon.

Designing Information Devices and Systems II Fall 2016 Murat Arcak and Michel Maharbiz Homework 0. This homework is due August 29th, 2016, at Noon. EECS 16B Designing Information Devices and Systems II Fall 2016 Murat Arcak and Michel Maharbiz Homework 0 This homework is due August 29th, 2016, at Noon. 1. Homework process and study group (a) Who else

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

DEN: Linear algebra numerical view (GEM: Gauss elimination method for reducing a full rank matrix to upper-triangular

DEN: Linear algebra numerical view (GEM: Gauss elimination method for reducing a full rank matrix to upper-triangular form) Given: matrix C = (c i,j ) n,m i,j=1 ODE and num math: Linear algebra (N) [lectures] c phabala 2016 DEN: Linear algebra numerical view (GEM: Gauss elimination method for reducing a full rank matrix

More information

ECE KIRCHHOFF'S LAWS - INVESTIGATION 8 KIRCHHOFF'S VOLTAGE LAW

ECE KIRCHHOFF'S LAWS - INVESTIGATION 8 KIRCHHOFF'S VOLTAGE LAW ECE 109 - KIRCHHOFF'S LAWS - IVESTIGATIO 8 KIRCHHOFF'S VOLTAGE LAW FALL 2006 A.P. FELZER To do "well" on this investigation you must not only get the right answers but must also do neat, complete and concise

More information

Applied Linear Algebra in Geoscience Using MATLAB

Applied Linear Algebra in Geoscience Using MATLAB Applied Linear Algebra in Geoscience Using MATLAB Contents Getting Started Creating Arrays Mathematical Operations with Arrays Using Script Files and Managing Data Two-Dimensional Plots Programming in

More information

1.2 Row Echelon Form EXAMPLE 1

1.2 Row Echelon Form EXAMPLE 1 .2 Row Echelon Form 7. The two systems 2x + x 2 = 4x + x 2 = 5 and 2x + x 2 = 4x + x 2 = have the same coefficient matrix but different righthand sides. Solve both systems simultaneously by eliminating

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

Math 471 (Numerical methods) Chapter 3 (second half). System of equations

Math 471 (Numerical methods) Chapter 3 (second half). System of equations Math 47 (Numerical methods) Chapter 3 (second half). System of equations Overlap 3.5 3.8 of Bradie 3.5 LU factorization w/o pivoting. Motivation: ( ) A I Gaussian Elimination (U L ) where U is upper triangular

More information

1 Number Systems and Errors 1

1 Number Systems and Errors 1 Contents 1 Number Systems and Errors 1 1.1 Introduction................................ 1 1.2 Number Representation and Base of Numbers............. 1 1.2.1 Normalized Floating-point Representation...........

More information

Math 307 Learning Goals

Math 307 Learning Goals Math 307 Learning Goals May 14, 2018 Chapter 1 Linear Equations 1.1 Solving Linear Equations Write a system of linear equations using matrix notation. Use Gaussian elimination to bring a system of linear

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

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

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

QUIZ 1 SOLUTION. One way of labeling voltages and currents is shown below.

QUIZ 1 SOLUTION. One way of labeling voltages and currents is shown below. F 14 1250 QUIZ 1 SOLUTION EX: Find the numerical value of v 2 in the circuit below. Show all work. SOL'N: One method of solution is to use Kirchhoff's and Ohm's laws. The first step in this approach is

More information

Chapter 28. Direct Current Circuits

Chapter 28. Direct Current Circuits Chapter 28 Direct Current Circuits Electromotive Force An electromotive force device, or emf device, is a source of constant potential. The emf describes the work done per unit charge and has units of

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

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

EE40 KVL KCL. Prof. Nathan Cheung 09/01/2009. Reading: Hambley Chapter 1

EE40 KVL KCL. Prof. Nathan Cheung 09/01/2009. Reading: Hambley Chapter 1 EE40 KVL KCL Prof. Nathan Cheung 09/01/2009 Reading: Hambley Chapter 1 Slide 1 Terminology: Nodes and Branches Node: A point where two or more circuit elements are connected Branch: A path that connects

More information

Matrix decompositions

Matrix decompositions Matrix decompositions How can we solve Ax = b? 1 Linear algebra Typical linear system of equations : x 1 x +x = x 1 +x +9x = 0 x 1 +x x = The variables x 1, x, and x only appear as linear terms (no powers

More information

(Mathematical Operations with Arrays) Applied Linear Algebra in Geoscience Using MATLAB

(Mathematical Operations with Arrays) Applied Linear Algebra in Geoscience Using MATLAB Applied Linear Algebra in Geoscience Using MATLAB (Mathematical Operations with Arrays) Contents Getting Started Matrices Creating Arrays Linear equations Mathematical Operations with Arrays Using Script

More information

Multiloop DC Circuits (Kirchhoff s Rules)

Multiloop DC Circuits (Kirchhoff s Rules) Multiloop DC Circuits (Kirchhoff s Rules) In analyzing circuits, it is generally the current that is of interest. You have seen how Ohm s Law can be used to analyze very simple circuits consisting of an

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

ELECTRICAL THEORY. Ideal Basic Circuit Element

ELECTRICAL THEORY. Ideal Basic Circuit Element ELECTRICAL THEORY PROF. SIRIPONG POTISUK ELEC 106 Ideal Basic Circuit Element Has only two terminals which are points of connection to other circuit components Can be described mathematically in terms

More information

Version 001 CIRCUITS holland (1290) 1

Version 001 CIRCUITS holland (1290) 1 Version CIRCUITS holland (9) This print-out should have questions Multiple-choice questions may continue on the next column or page find all choices before answering AP M 99 MC points The power dissipated

More information

Math 307 Learning Goals. March 23, 2010

Math 307 Learning Goals. March 23, 2010 Math 307 Learning Goals March 23, 2010 Course Description The course presents core concepts of linear algebra by focusing on applications in Science and Engineering. Examples of applications from recent

More information

AM 205: lecture 6. Last time: finished the data fitting topic Today s lecture: numerical linear algebra, LU factorization

AM 205: lecture 6. Last time: finished the data fitting topic Today s lecture: numerical linear algebra, LU factorization AM 205: lecture 6 Last time: finished the data fitting topic Today s lecture: numerical linear algebra, LU factorization Unit II: Numerical Linear Algebra Motivation Almost everything in Scientific Computing

More information

Department of Mathematics California State University, Los Angeles Master s Degree Comprehensive Examination in. NUMERICAL ANALYSIS Spring 2015

Department of Mathematics California State University, Los Angeles Master s Degree Comprehensive Examination in. NUMERICAL ANALYSIS Spring 2015 Department of Mathematics California State University, Los Angeles Master s Degree Comprehensive Examination in NUMERICAL ANALYSIS Spring 2015 Instructions: Do exactly two problems from Part A AND two

More information

Linear Algebra Linear Algebra : Matrix decompositions Monday, February 11th Math 365 Week #4

Linear Algebra Linear Algebra : Matrix decompositions Monday, February 11th Math 365 Week #4 Linear Algebra Linear Algebra : Matrix decompositions Monday, February 11th Math Week # 1 Saturday, February 1, 1 Linear algebra Typical linear system of equations : x 1 x +x = x 1 +x +9x = 0 x 1 +x x

More information

Sirindhorn International Institute of Technology Thammasat University at Rangsit

Sirindhorn International Institute of Technology Thammasat University at Rangsit Sirindhorn International Institute of Technology Thammasat University at Rangsit School of Information, Computer and Communication Technology COURSE : ECS 304 Basic Electrical Engineering Lab INSTRUCTOR

More information

AM 205: lecture 6. Last time: finished the data fitting topic Today s lecture: numerical linear algebra, LU factorization

AM 205: lecture 6. Last time: finished the data fitting topic Today s lecture: numerical linear algebra, LU factorization AM 205: lecture 6 Last time: finished the data fitting topic Today s lecture: numerical linear algebra, LU factorization Unit II: Numerical Linear Algebra Motivation Almost everything in Scientific Computing

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

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

Matrix Factorization Reading: Lay 2.5

Matrix Factorization Reading: Lay 2.5 Matrix Factorization Reading: Lay 2.5 October, 20 You have seen that if we know the inverse A of a matrix A, we can easily solve the equation Ax = b. Solving a large number of equations Ax = b, Ax 2 =

More information

Electric Circuits I. Nodal Analysis. Dr. Firas Obeidat

Electric Circuits I. Nodal Analysis. Dr. Firas Obeidat Electric Circuits I Nodal Analysis Dr. Firas Obeidat 1 Nodal Analysis Without Voltage Source Nodal analysis, which is based on a systematic application of Kirchhoff s current law (KCL). A node is defined

More information

Electric Current. Note: Current has polarity. EECS 42, Spring 2005 Week 2a 1

Electric Current. Note: Current has polarity. EECS 42, Spring 2005 Week 2a 1 Electric Current Definition: rate of positive charge flow Symbol: i Units: Coulombs per second Amperes (A) i = dq/dt where q = charge (in Coulombs), t = time (in seconds) Note: Current has polarity. EECS

More information

E40M Charge, Current, Voltage and Electrical Circuits KCL, KVL, Power & Energy Flow. M. Horowitz, J. Plummer, R. Howe 1

E40M Charge, Current, Voltage and Electrical Circuits KCL, KVL, Power & Energy Flow. M. Horowitz, J. Plummer, R. Howe 1 E40M Charge, Current, Voltage and Electrical Circuits KCL, KVL, Power & Energy Flow M. Horowitz, J. Plummer, R. Howe 1 Reading For Topics In These Slides Chapter 1 in the course reader OR A&L 1.6-1.7 -

More information

PowerPoints organized by Dr. Michael R. Gustafson II, Duke University

PowerPoints organized by Dr. Michael R. Gustafson II, Duke University Part 3 Chapter 10 LU Factorization PowerPoints organized by Dr. Michael R. Gustafson II, Duke University All images copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display.

More information

A LINEAR SYSTEMS OF EQUATIONS. By : Dewi Rachmatin

A LINEAR SYSTEMS OF EQUATIONS. By : Dewi Rachmatin A LINEAR SYSTEMS OF EQUATIONS By : Dewi Rachmatin Back Substitution We will now develop the backsubstitution algorithm, which is useful for solving a linear system of equations that has an upper-triangular

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

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

Electric Circuits. June 12, 2013

Electric Circuits. June 12, 2013 Electric Circuits June 12, 2013 Definitions Coulomb is the SI unit for an electric charge. The symbol is "C". Electric Current ( I ) is the flow of electrons per unit time. It is measured in coulombs per

More information

Direct Current Circuits

Direct Current Circuits Name: Date: PC1143 Physics III Direct Current Circuits 5 Laboratory Worksheet Part A: Single-Loop Circuits R 1 = I 0 = V 1 = R 2 = I 1 = V 2 = R 3 = I 2 = V 3 = R 12 = I 3 = V 12 = R 23 = V 23 = R 123

More information

JFET Homework. Nov. 4, 2007, rev. Nov. 12, 2015

JFET Homework. Nov. 4, 2007, rev. Nov. 12, 2015 Nov. 4, 2007, rev. Nov. 12, 2015 These homework problems provide practice with analysis and design involving the most common type of JFET circuits. There is one problem for each type of circuit. Answers

More information

Definition (T -invariant subspace) Example. Example

Definition (T -invariant subspace) Example. Example Eigenvalues, Eigenvectors, Similarity, and Diagonalization We now turn our attention to linear transformations of the form T : V V. To better understand the effect of T on the vector space V, we begin

More information

ENGG 225. David Ng. Winter January 9, Circuits, Currents, and Voltages... 5

ENGG 225. David Ng. Winter January 9, Circuits, Currents, and Voltages... 5 ENGG 225 David Ng Winter 2017 Contents 1 January 9, 2017 5 1.1 Circuits, Currents, and Voltages.................... 5 2 January 11, 2017 6 2.1 Ideal Basic Circuit Elements....................... 6 3 January

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

Introduction to Applied Linear Algebra with MATLAB

Introduction to Applied Linear Algebra with MATLAB Sigam Series in Applied Mathematics Volume 7 Rizwan Butt Introduction to Applied Linear Algebra with MATLAB Heldermann Verlag Contents Number Systems and Errors 1 1.1 Introduction 1 1.2 Number Representation

More information

Electric Current & DC Circuits

Electric Current & DC Circuits Electric Current & DC Circuits Circuits Click on the topic to go to that section Conductors Resistivity and Resistance Circuit Diagrams Measurement EMF & Terminal Voltage Kirchhoff's Rules Capacitors*

More information

Matrix decompositions

Matrix decompositions Matrix decompositions How can we solve Ax = b? 1 Linear algebra Typical linear system of equations : x 1 x +x = x 1 +x +9x = 0 x 1 +x x = The variables x 1, x, and x only appear as linear terms (no powers

More information

THERE MUST BE 50 WAYS TO FIND YOUR VALUES: AN EXPLORATION OF CIRCUIT ANALYSIS TECHNIQUES FROM OHM S LAW TO EQUIVALENT CIRCUITS

THERE MUST BE 50 WAYS TO FIND YOUR VALUES: AN EXPLORATION OF CIRCUIT ANALYSIS TECHNIQUES FROM OHM S LAW TO EQUIVALENT CIRCUITS THERE MUST BE 50 WAYS TO FIND YOUR VALUES: AN EXPLORATION OF CIRCUIT ANALYSIS TECHNIQUES FROM OHM S LAW TO EQUIVALENT CIRCUITS Kristine McCarthy Josh Pratti Alexis Rodriguez-Carlson November 20, 2006 Table

More information

ELECTRICITY. Electric Circuit. What do you already know about it? Do Smarty Demo 5/30/2010. Electric Current. Voltage? Resistance? Current?

ELECTRICITY. Electric Circuit. What do you already know about it? Do Smarty Demo 5/30/2010. Electric Current. Voltage? Resistance? Current? ELECTRICITY What do you already know about it? Voltage? Resistance? Current? Do Smarty Demo 1 Electric Circuit A path over which electrons travel, out through the negative terminal, through the conductor,

More information

Direct-Current Circuits

Direct-Current Circuits Direct-Current Circuits A'.3/.". 39 '- )232.-/ 32,+/" 7+3(5-.)232.-/ 7 3244)'03,.5B )*+,"- &'&./( 0-1*234 35-2567+- *7 2829*4-& )"< 35- )*+,"-= 9-4-- 3563 A0.5.C2/'-231).D')232.')2-1 < /633-">&@5-:836+-0"1464-625"-4*43"

More information

Getting Started with Communications Engineering

Getting Started with Communications Engineering 1 Linear algebra is the algebra of linear equations: the term linear being used in the same sense as in linear functions, such as: which is the equation of a straight line. y ax c (0.1) Of course, if we

More information

Linear Algebra Section 2.6 : LU Decomposition Section 2.7 : Permutations and transposes Wednesday, February 13th Math 301 Week #4

Linear Algebra Section 2.6 : LU Decomposition Section 2.7 : Permutations and transposes Wednesday, February 13th Math 301 Week #4 Linear Algebra Section. : LU Decomposition Section. : Permutations and transposes Wednesday, February 1th Math 01 Week # 1 The LU Decomposition We learned last time that we can factor a invertible matrix

More information

Iterative Methods. Splitting Methods

Iterative Methods. Splitting Methods Iterative Methods Splitting Methods 1 Direct Methods Solving Ax = b using direct methods. Gaussian elimination (using LU decomposition) Variants of LU, including Crout and Doolittle Other decomposition

More information

Notes on Electricity (Circuits)

Notes on Electricity (Circuits) A circuit is defined to be a collection of energy-givers (active elements) and energy-takers (passive elements) that form a closed path (or complete path) through which electrical current can flow. The

More information

Section 5.6. LU and LDU Factorizations

Section 5.6. LU and LDU Factorizations 5.6. LU and LDU Factorizations Section 5.6. LU and LDU Factorizations Note. We largely follow Fraleigh and Beauregard s approach to this topic from Linear Algebra, 3rd Edition, Addison-Wesley (995). See

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

MATH 3511 Lecture 1. Solving Linear Systems 1

MATH 3511 Lecture 1. Solving Linear Systems 1 MATH 3511 Lecture 1 Solving Linear Systems 1 Dmitriy Leykekhman Spring 2012 Goals Review of basic linear algebra Solution of simple linear systems Gaussian elimination D Leykekhman - MATH 3511 Introduction

More information

Module 1, Add on math lesson Simultaneous Equations. Teacher. 45 minutes

Module 1, Add on math lesson Simultaneous Equations. Teacher. 45 minutes Module 1, Add on math lesson Simultaneous Equations 45 minutes eacher Purpose of this lesson his lesson is designed to be incorporated into Module 1, core lesson 4, in which students learn about potential

More information

Introduction to Mathematical Programming

Introduction to Mathematical Programming Introduction to Mathematical Programming Ming Zhong Lecture 6 September 12, 2018 Ming Zhong (JHU) AMS Fall 2018 1 / 20 Table of Contents 1 Ming Zhong (JHU) AMS Fall 2018 2 / 20 Solving Linear Systems A

More information

Lecture 12. Linear systems of equations II. a 13. a 12. a 14. a a 22. a 23. a 34 a 41. a 32. a 33. a 42. a 43. a 44)

Lecture 12. Linear systems of equations II. a 13. a 12. a 14. a a 22. a 23. a 34 a 41. a 32. a 33. a 42. a 43. a 44) 1 Introduction Lecture 12 Linear systems of equations II We have looked at Gauss-Jordan elimination and Gaussian elimination as ways to solve a linear system Ax=b. We now turn to the LU decomposition,

More information

Chapter 21 Electric Current and Direct- Current Circuits

Chapter 21 Electric Current and Direct- Current Circuits Chapter 21 Electric Current and Direct- Current Circuits 1 Overview of Chapter 21 Electric Current and Resistance Energy and Power in Electric Circuits Resistors in Series and Parallel Kirchhoff s Rules

More information

Chapter 18. Direct Current Circuits

Chapter 18. Direct Current Circuits Chapter 18 Direct Current Circuits Sources of emf The source that maintains the current in a closed circuit is called a source of emf Any devices that increase the potential energy of charges circulating

More information

Physics 1214 Chapter 19: Current, Resistance, and Direct-Current Circuits

Physics 1214 Chapter 19: Current, Resistance, and Direct-Current Circuits Physics 1214 Chapter 19: Current, Resistance, and Direct-Current Circuits 1 Current current: (also called electric current) is an motion of charge from one region of a conductor to another. Current When

More information

Introduction to Scientific Computing

Introduction to Scientific Computing (Lecture 5: Linear system of equations / Matrix Splitting) Bojana Rosić, Thilo Moshagen Institute of Scientific Computing Motivation Let us resolve the problem scheme by using Kirchhoff s laws: the algebraic

More information

DC Circuit Analysis + 1 R 3 = 1 R R 2

DC Circuit Analysis + 1 R 3 = 1 R R 2 DC Circuit Analysis In analyzing circuits, it is generally the current that is of interest. You have seen how Ohm s Law can be used to analyze very simple circuits consisting of an EMF and single resistance.

More information

Homework 1 solutions

Homework 1 solutions Electric Circuits 1 Homework 1 solutions (Due date: 2014/3/3) This assignment covers Ch1 and Ch2 of the textbook. The full credit is 100 points. For each question, detailed derivation processes and accurate

More information

Chapter 10 Sinusoidal Steady State Analysis Chapter Objectives:

Chapter 10 Sinusoidal Steady State Analysis Chapter Objectives: Chapter 10 Sinusoidal Steady State Analysis Chapter Objectives: Apply previously learn circuit techniques to sinusoidal steady-state analysis. Learn how to apply nodal and mesh analysis in the frequency

More information

Applied Linear Algebra in Geoscience Using MATLAB

Applied Linear Algebra in Geoscience Using MATLAB Applied Linear Algebra in Geoscience Using MATLAB Contents Getting Started Creating Arrays Mathematical Operations with Arrays Using Script Files and Managing Data Two-Dimensional Plots Programming in

More information

EE292: Fundamentals of ECE

EE292: Fundamentals of ECE EE292: Fundamentals of ECE Fall 2012 TTh 10:00-11:15 SEB 1242 Lecture 4 120906 http://www.ee.unlv.edu/~b1morris/ee292/ 2 Outline Review Voltage Divider Current Divider Node-Voltage Analysis 3 Network Analysis

More information

Algebra C Numerical Linear Algebra Sample Exam Problems

Algebra C Numerical Linear Algebra Sample Exam Problems Algebra C Numerical Linear Algebra Sample Exam Problems Notation. Denote by V a finite-dimensional Hilbert space with inner product (, ) and corresponding norm. The abbreviation SPD is used for symmetric

More information