Answer:
Step-by-step explanation:
Given data,
R(kΩ)..............V(V)
2200...............3.5
800..................1.7
1300.............….2.8
710...................1.9
930.................1.3
1600....…...…..2.6
The power will be in W unit
Matlab code.
syms V;
syms R;
V = [3.5 1.7 2.8 1.9 1.3 1.6];
R = [2200 800 1300 710 930 1600];
P = V.^2 ./ R
Ptot = sum(P)
Or for vertical column
Matlab code.
syms V;
syms R;
V = [3.5; 1.7; 2.8; 1.9; 1.3; 1.6];
R = [2200; 800; 1300; 710; 930; 1600];
P = V.^2 ./ R
Ptot = sum(P)