Physics for computer science completed assignments, IE University, bachelor of computer science and AI. The four assignments include completed exercises with calculations, formulas and visuals.
Assignment 1: Static fields, Magnetic fields, Electrical fields
Assignment 2: Current, EMF, Magnetic ...
Assignment 3
Beatrice Mossberg
Problem 1
Given the circuit represented in the figure below, calculate:
a) The current going through and . (10 points)
R1 R2
System of equations:
file:///Users/bestricemossberg/Downloads/module_3 (2).html 1/6
, 2022-03-20 19:16 module_3
I1 (45) + I2 (−10) + I3 (20) = 0
I2 = 0.1
I 1(20) + I2 (5) + I3 (25) = 15
In [13]:
import numpy as np
from numpy.linalg import solve
#Solve the system of equations
A=np.matrix('45,-10,20;0,1,0;20,5,25')
b=np.matrix('0;0.1;15')
x=solve(A,b)
print(x)
[[-0.36551724]
[ 0.1 ]
[ 0.87241379]]
In [14]:
I1=-0.36551724
I2=0.1
I3=0.87241379
IR1=I1-I2
IR2=I2+I3
print(round(IR1, 4), "A")
print(round(IR2, 4), "A")
-0.4655 A
0.9724 A
The current through R1 is approximately -0.47 A in a counter clockwise direction toward
node c and 0.47 A in a clockwise direction away from node c.
The current through R2 is approximately 0.97 A in a counter clockwise direction toward node
A.
b) The electric potential measured at node C. (5 points)
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
Quick and easy check-out
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
Focus on what matters
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
Frequently asked questions
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Satisfaction guarantee: how does it work?
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Who am I buying these notes from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller beatricemossberg. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $7.63. You're not tied to anything after your purchase.