Answer:
See explaination and attachment for theprogram code and output.
Step-by-step explanation:
matlab program:
x1(1)=0;
y1(1)=0;
x2(1)=0;
y2(1)=0;
x3(1)=0;
y3(1)=0;
for i=1:10
x1(i+1)=0.5*x1(i);
y1(i+1)=0.5*y1(i);
x2(i+1)=0.5*x2(i)+0.25;
y2(i+1)=0.5*y2(i)+(sqrt(3)/4);
x3(i+1)=0.5*x3(i)+0.5;
y3(i+1)=0.5*y3(i);
end
figure
hold on
plot(x1,y1,'*')
plot(x2,y2,'*')
plot(x3,y3,'*')
hold off
Please kindly check attachment for output of 10, 100 and 1000 respectively.