Question: Help with this problem...!!! Please...!!!

I have benn assigned to do this: Set up a Double Loop in Maple with the parameter "A" running from 0 to 2 in steps of 0.02 and "B" running from -1 to 1 in steps of 0.02. Within the double loop, set Xo=A+BI and compute 10 Newton's Method Iterates. Now I don't have a clue how to solve it but I have been trying, It seems to me that I always head to a dead end solution.... By recommendation I have done this but I get stuck; I don't know how to do the double loop from this domains. I'm gonna write it down or if you want you can see it with the link below. > restart > localA, B > print(); localA, B > globalX > print(); globalX > A := seq(0.02 i, i = 0 .. 100) > print(); 0., 0.02, 0.04, 0.06, 0.08, 0.10, 0.12, 0.14, 0.16, 0.18, 0.20, 0.22, 0.24, 0.26, 0.28, 0.30, 0.32, 0.34, 0.36, 0.38, 0.40, 0.42, 0.44, 0.46, 0.48, 0.50, 0.52, 0.54, 0.56, 0.58, 0.60, 0.62, 0.64, 0.66, 0.68, 0.70, 0.72, 0.74, 0.76, 0.78, 0.80, 0.82, 0.84, 0.86, 0.88, 0.90, 0.92, 0.94, 0.96, 0.98, 1.00, 1.02, 1.04, 1.06, 1.08, 1.10, 1.12, 1.14, 1.16, 1.18, 1.20, 1.22, 1.24, 1.26, 1.28, 1.30, 1.32, 1.34, 1.36, 1.38, 1.40, 1.42, 1.44, 1.46, 1.48, 1.50, 1.52, 1.54, 1.56, 1.58, 1.60, 1.62, 1.64, 1.66, 1.68, 1.70, 1.72, 1.74, 1.76, 1.78, 1.80, 1.82, 1.84, 1.86, 1.88, 1.90, 1.92, 1.94, 1.96, 1.98, 2.00 > B := seq(0.02 I j, j = -50 .. 50) > print(); -1.00 I, -0.98 I, -0.96 I, -0.94 I, -0.92 I, -0.90 I, -0.88 I, -0.86 I, -0.84 I, -0.82 I, -0.80 I, -0.78 I, -0.76 I, -0.74 I, -0.72 I, -0.70 I, -0.68 I, -0.66 I, -0.64 I, -0.62 I, -0.60 I, -0.58 I, -0.56 I, -0.54 I, -0.52 I, -0.50 I, -0.48 I, -0.46 I, -0.44 I, -0.42 I, -0.40 I, -0.38 I, -0.36 I, -0.34 I, -0.32 I, -0.30 I, -0.28 I, -0.26 I, -0.24 I, -0.22 I, -0.20 I, -0.18 I, -0.16 I, -0.14 I, -0.12 I, -0.10 I, -0.08 I, -0.06 I, -0.04 I, -0.02 I, 0. I, 0.02 I, 0.04 I, 0.06 I, 0.08 I, 0.10 I, 0.12 I, 0.14 I, 0.16 I, 0.18 I, 0.20 I, 0.22 I, 0.24 I, 0.26 I, 0.28 I, 0.30 I, 0.32 I, 0.34 I, 0.36 I, 0.38 I, 0.40 I, 0.42 I, 0.44 I, 0.46 I, 0.48 I, 0.50 I, 0.52 I, 0.54 I, 0.56 I, 0.58 I, 0.60 I, 0.62 I, 0.64 I, 0.66 I, 0.68 I, 0.70 I, 0.72 I, 0.74 I, 0.76 I, 0.78 I, 0.80 I, 0.82 I, 0.84 I, 0.86 I, 0.88 I, 0.90 I, 0.92 I, 0.94 I, 0.96 I, 0.98 I, 1.00 I > X := A + B > print(); 0. - 1.00 I, 0.02 - 0.98 I, 0.04 - 0.96 I, 0.06 - 0.94 I, 0.08 - 0.92 I, 0.10 - 0.90 I, 0.12 - 0.88 I, 0.14 - 0.86 I, 0.16 - 0.84 I, 0.18 - 0.82 I, 0.20 - 0.80 I, 0.22 - 0.78 I, 0.24 - 0.76 I, 0.26 - 0.74 I, 0.28 - 0.72 I, 0.30 - 0.70 I, 0.32 - 0.68 I, 0.34 - 0.66 I, 0.36 - 0.64 I, 0.38 - 0.62 I, 0.40 - 0.60 I, 0.42 - 0.58 I, 0.44 - 0.56 I, 0.46 - 0.54 I, 0.48 - 0.52 I, 0.50 - 0.50 I, 0.52 - 0.48 I, 0.54 - 0.46 I, 0.56 - 0.44 I, 0.58 - 0.42 I, 0.60 - 0.40 I, 0.62 - 0.38 I, 0.64 - 0.36 I, 0.66 - 0.34 I, 0.68 - 0.32 I, 0.70 - 0.30 I, 0.72 - 0.28 I, 0.74 - 0.26 I, 0.76 - 0.24 I, 0.78 - 0.22 I, 0.80 - 0.20 I, 0.82 - 0.18 I, 0.84 - 0.16 I, 0.86 - 0.14 I, 0.88 - 0.12 I, 0.90 - 0.10 I, 0.92 - 0.08 I, 0.94 - 0.06 I, 0.96 - 0.04 I, 0.98 - 0.02 I, 1.00 + 0. I, 1.02 + 0.02 I, 1.04 + 0.04 I, 1.06 + 0.06 I, 1.08 + 0.08 I, 1.10 + 0.10 I, 1.12 + 0.12 I, 1.14 + 0.14 I, 1.16 + 0.16 I, 1.18 + 0.18 I, 1.20 + 0.20 I, 1.22 + 0.22 I, 1.24 + 0.24 I, 1.26 + 0.26 I, 1.28 + 0.28 I, 1.30 + 0.30 I, 1.32 + 0.32 I, 1.34 + 0.34 I, 1.36 + 0.36 I, 1.38 + 0.38 I, 1.40 + 0.40 I, 1.42 + 0.42 I, 1.44 + 0.44 I, 1.46 + 0.46 I, 1.48 + 0.48 I, 1.50 + 0.50 I, 1.52 + 0.52 I, 1.54 + 0.54 I, 1.56 + 0.56 I, 1.58 + 0.58 I, 1.60 + 0.60 I, 1.62 + 0.62 I, 1.64 + 0.64 I, 1.66 + 0.66 I, 1.68 + 0.68 I, 1.70 + 0.70 I, 1.72 + 0.72 I, 1.74 + 0.74 I, 1.76 + 0.76 I, 1.78 + 0.78 I, 1.80 + 0.80 I, 1.82 + 0.82 I, 1.84 + 0.84 I, 1.86 + 0.86 I, 1.88 + 0.88 I, 1.90 + 0.90 I, 1.92 + 0.92 I, 1.94 + 0.94 I, 1.96 + 0.96 I, 1.98 + 0.98 I, 2.00 + 1.00 I Look at this: Please replace this text with the link to your file. The link can be found in the File Manager
Please Wait...