129k views
4 votes
Use the list method to write "The perfect square integers between 1 and 80 inclusive".

{1, 4, 9, 16, 25, 36, 49, 64, 80}
{4, 9, 16, 25, 36, 49, 64}
{1, 4, 9, 16, 25, 36, 49, 64}

User Paul Rigor
by
5.4k points

2 Answers

0 votes

(1,9,16,25,36,49,64)Answer:

Explanation:

User Smoser
by
5.4k points
4 votes

ANSWER

{1, 4, 9, 16, 25, 36, 49, 64}

EXPLANATION

The perfect square integers between 1 and 80 inclusive are obtained by squaring the natural numbers from 1 to 8


{1}^(2) = 1


{2}^(2) = 4


{3}^(2) = 9


{4}^(2) = 16


{5}^(2) = 25


{6}^(2) = 36


{7}^(2) = 49


{8}^(2) = 64

The square of the next number does not fall within the given range.

Therefore "The perfect square integers between 1 and 80 inclusive" are

{1, 4, 9, 16, 25, 36, 49, 64}

User Pengun
by
4.7k points