0% found this document useful (1 vote)
3K views

Engineering Circuit Analysis 8th Edition by Hayt and Kemmer Solutions

This document contains solutions to exercises from Chapter 4 of the textbook "Engineering circuit analysis 8th edition by Hayt and kemmer". It provides the steps to solve systems of linear equations using nodal analysis and MATLAB, including writing the node voltage equations, calculating determinants, using Cramer's rule, and presenting the final results. Many exercises are solved as examples, with corrections provided when needed.

Uploaded by

Ranz Kopacz
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (1 vote)
3K views

Engineering Circuit Analysis 8th Edition by Hayt and Kemmer Solutions

This document contains solutions to exercises from Chapter 4 of the textbook "Engineering circuit analysis 8th edition by Hayt and kemmer". It provides the steps to solve systems of linear equations using nodal analysis and MATLAB, including writing the node voltage equations, calculating determinants, using Cramer's rule, and presenting the final results. Many exercises are solved as examples, with corrections provided when needed.

Uploaded by

Ranz Kopacz
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 14

Engineering circuit analysis 8th edition by Hayt and kemmer

Chapter four solutions

Prepared by Ranz

EXERCISE 1
1

We have our system of linear equation


2

Substitute in the other equation, and reduce.


4

Then substitute in any equation.


5

We have our system of linear equation


6

Substitute in both equation, and reduce.


8
9

Substitute in the new equation, and reduce.


10

Then substitute in any equation.


11

Then substitute in any equation.

EXERCISE 2
1

We have our matrix


2

We calculate the determinant


3

We have our matrix


4

We calculate the determinant


EXERCISE 3
1

We have our linear equation system


2

Write Cramer's rule


3

Find the determinant


4

Find the determinant


5

Substitute in formula
6

We have our linear equation system


7

Write Cramer's rule


8

Find the determinant


9
Find the determinant
10

Substitute in formula

EXERCISE 4
4. (a) Grouping terms,
990 = (66 + 15 + 100)v1 – 15v2 – 110v3
308 = -14v1 + 36v2 – 22v3
0 = -140v1 – 30v2 + 212v3
Solving, v1 = 13.90 V
v2 = 21.42 V
v3 = 12.21 V
(b)
>> e1 = '990 = (66 + 15 + 110)*v1 - 15*v2 - 110*v3';
>> e2 = '308 = -14*v1 + 36*v2 - 22*v3';
>> e3 = '0 = -140*v1 - 30*v2 + 212*v3';
>> a = solve(e1,e2,e3,'v1','v2','v3');
>> a.v1
ans = 1070/77
>> a.v2
ans = 4948/231
>> a.v3
ans = 940/77

EXERCISE 5
1
a) v1 = 29.98 , v2 = 96.07 , v3 = 77.09

b) Proved in solution
RESULT
a) Grouping terms,
1596 = (114+19+12)v -19v2 -12v3
180 = -v1 + (1 + 6)v2 – 6v3
1064 = -14v1 – 133v2 + (38 + 14 + 133)v3

Solving, v1 = 29.98; v2 = 96.07; v3 = 77.09

b) MATLAB code:
>> e1 = '7 = v1/2 - (v2 - v1)/12 + (v1 - v3)/19';
>> e2 = '15 = (v2 - v1)/12 + (v2 - v3)/2';
>> e3 = '4 = v3/7 + (v3 - v1)/19 + (v3 - v2)/2';
>> a = solve(e1,e2,e3,'v1','v2','v3');
>> a.v1
ans =
16876/563
>> a.v2
ans =
54088/563
>> a.v3
ans =
43400/563

EXERCISE 6
1

RESULT
See for the corrected code

The corrected code is as follows (note there were no errors in the e2 equation):

>> e1 = '3 = v1/7 - (v2 - v1)/2 + (v1 - v3)/3';


>> e2 = '2 = (v2 - v1)/2 + (v2 - v3)/14';
>> e3 = '0 = v3/10 + (v3 - v1)/3 + (v3 - v2)/14';
>> a = solve(e1,e2,e3,'v1','v2','v3');
>> a.v1
ans = 1178/53
>> a.v2
ans = 9360/371
>> a.v3
ans = 6770/371

EXERCISE 7
1

RESULT
See for corrected result
EXERCISE 8
1

Equation for node 1


3

Equation for node 2


4

Now we have a linear equation system, we resolve it by using MATLAB or using


other known method
5

Result
EXERCISE 9
1

Equation for node x


3

Equation for node y


4

Now we have a linear equation system, we resolve it by using MATLAB or using


other known method
5

RESULT
nd
2 way/
Define nodal voltages v1 and v2 on the top left and top right nodes, respectively; the
bottom node is our reference node. Our nodal equations are then,
EXERCISE 10
1

Equation for node 1


3

Equation for node 2


4

Now we have a linear equation system, we resolve it by using MATLAB or using


other known method
5
RESULT

EXERCISE11
1

Equation for node x


3

Equation for node y


4

Now we have a linear equation system, we resolve it by using MATLAB or using


other known method

5
6

RESULT

EXERCISE 12

EXERCISE 13

EXERCISE 14

EXERCISE 15

EXERCISE 16

EXERCISE 17

EXERCISE 18

EXERCISE 19

EXERCISE 20
EXERCISE 21

EXERCISE 22

EXERCISE 23

EXERCISE 24

EXERCISE 25

EXERCISE 26

EXERCISE 27

EXERCISE 28

EXERCISE 29

EXERCISE 30

EXERCISE 31

EXERCISE 32
EXERCISE 33

EXERCISE 34

EXERCISE 35

EXERCISE 36

EXERCISE 37

EXERCISE 38

EXERCISE 39

EXERCISE 40

EXERCISE 41

EXERCISE 42

You might also like