Answer:
HDMI ,I only have one answer to this question
Answer:
Use pelican, or similar heavy duty cases
Explanation:
Pelican is a brand btw. 10/10 would recommend
Given, a = 3, r = 1/2, n = 10
%r is common ratio
%n is number of terms
%a is the first term of the series
Sum = 0;
a = 3;
r = 1/2;
for i = 0 : 1 : 10;
Sum = Sum + a * r ^ i;
end
Sum