54.5k views
3 votes
Create the following table with a loop and a few math equations. First colulm is just the index. 2nd column is index squared. Third column is index squared and then divided by 2.

User Slugsie
by
7.8k points

1 Answer

4 votes

Final answer:

To create the table with a loop and math equations, you can use a programming language like Python. Here's an example of how to do it.

Step-by-step explanation:

To create the table with a loop and math equations, you can use a programming language like Python. Here's an example:

for index in range(1, 6):
squared = index ** 2
divided = squared / 2
print(index, squared, divided)

This code will generate a table with three columns: the index, the index squared, and the index squared divided by 2.

User Yves
by
7.8k points