summaryrefslogtreecommitdiff
path: root/1529/CH10/EX10.18/10_18.sce
blob: fcf455af620fb1bdb68e3c29a9487a8d19f4591f (plain)
1
2
3
4
5
6
7
//Chapter 10, Problem 18
clc;
BC=100;                 //resistance between point B and C
DA=400;                 //resistance between point D and A
CD=10;                  //resistance between point C and D
Rx=BC*DA/CD;            //calculating unknown resistance using balance equation
printf("unknown resistance = %f K ohms",Rx/1000);