Electrical – How to calculate i, i1, i2 and v2

circuit analysiskirchhoffs-laws

I'm unable to figure out how to use the current dependant voltage source in KVL

The following are the equations I've found, up till now:
20i+V2=10,
V2=50i1,
20i+50i1=10,
i=i1+i2

Best Answer

Well, we are trying to analyze the following circuit:

schematic

simulate this circuit – Schematic created using CircuitLab

Using KCL, we can write:

$$\text{I}_1=\text{I}_2+\text{I}_3\tag1$$

Using KVL, we can write:

$$ \begin{cases} \text{I}_1=\frac{\text{V}_\text{a}-\text{V}_1}{\text{R}_1}\\ \\ \text{I}_2=\frac{\text{V}_2}{\text{R}_2}\\ \\ \text{I}_3=\frac{\text{V}_1}{\text{R}_3}\\ \\ \text{V}_\text{x}=\text{V}_1-\text{V}_2=\alpha\text{I}_1 \end{cases}\tag2 $$

Using some Mathematica code:

FullSimplify[
 Solve[{I1 == I2 + I3, I1 == (Va - V1)/R1, I2 == V2/R2, I3 == V1/R3, 
   Vx == V1 - V2 == α*I1}, {I1, I2, I3, V1, V2, Vx}]]

Using Your values we get:

FullSimplify[
 Solve[{I1 == I2 + I3, I1 == (10 - V1)/20, I2 == V2/25, I3 == V1/50, 
   Vx == V1 - V2 == 5*I1}, {I1, I2, I3, V1, V2, Vx}]]

Which gives:

{{I1 -> 1/4, I2 -> 3/20, I3 -> 1/10, V1 -> 5, V2 -> 15/4, Vx -> 5/4}}

Which approximate to:

{{I1 -> 0.25, I2 -> 0.15, I3 -> 0.1, V1 -> 5., V2 -> 3.75, 
  Vx -> 1.25}}