If the pattern continues, then how many circles will be in Figure 7?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Hmm, nice (+1)
Log in to reply
I noticed something. Both our solutions, when expanded, will yield the same result: 2 n 2 − 2 n + 1
Log in to reply
Oh haha, yeah correct.
I assume you meant 2 n 2 + 2 n + 1 .
Edit: 2 n 2 − 2 n + 1 is correct.The formula above is correct if you think like a programmer. :D
Log in to reply
@Jesse Nieminen – Nope. It's 2 n 2 − 2 n + 1
Log in to reply
@Hung Woei Neoh – I solved this problem some time ago and now I, for some reason, started indexing from zero. (perhaps too much programming :D) This adds 4 n to the formula. 2 n 2 + 2 n + 1 is correct if indexing is started from zero.
Log in to reply
@Jesse Nieminen – I see. It's better to follow the figure numbers provided in the question though
Relevant wiki: Identifying Pattern Relationships
If we observe carefully, the number of circles in the
n
th
figure is given by
1
+
4
(
k
=
1
∑
n
−
1
k
)
.
So, in the
7
th
figure, there would be
1
+
4
(
k
=
1
∑
7
−
1
k
)
=
1
+
4
×
2
1
=
8
5
.
Wow, nice, I never noticed this pattern
Follows. This is the hypotenuse of all triangle whose hypotenus is +1 the largest leg.
f ( n ) = 2 n ( n + 1 ) + 1
Problem Loading...
Note Loading...
Set Loading...
Relevant wiki: Identifying Pattern Relationships
Notice that the number of circles in figure n , c n follow this formula
c n = n 2 + ( n − 1 ) 2 , n ≥ 1
Figure 7 will have c 7 = 7 2 + ( 7 − 1 ) 2 = 4 9 + 3 6 = 8 5 circles