Jump to content
BrainDen.com - Brain Teasers
  • 0


Guest
 Share

Question

the first circular number is 1, next is 4.

the 3rd is 8


  x x

x x x x

x x x x

  x x

the 4th is 24

    x x

  x x x x

x x x x x x

x x x x x x

  x x x x

    x x

and so on.

1. write a formula that goes through every circular number.

2. write a formula that only goes through numbers that are both square and circular. (assume integer input)

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0

the first circular number is 1, next is 4.

the 3rd is 8


  x x

x x x x

x x x x

  x x

the 4th is 24

    x x

  x x x x

x x x x x x

x x x x x x

  x x x x

    x x

and so on.

1. write a formula that goes through every circular number.

2. write a formula that only goes through numbers that are both square and circular. (assume integer input)

Link to comment
Share on other sites

  • 0

You may want to check the definiton of circular numbers, numbers whose square end in the same digit as the original number, such a 0, 1, 5 or 6. Are you asking for something other than this.

Link to comment
Share on other sites

  • 0

Round numbers, indeed!

Except for 1, the formula x(2x-2)works.

Yup...

Each quadrant of the circle is a triangle, so circular numbers are simply 4*triangular numbers (with a slight change due to the first circular number).

Triangular numbers are x(x+1)/2. Multiplying by 4 is 2x(x+1). Replacing x by (x-1) results in 2x(x-1), which is the equation given by seajay.

Link to comment
Share on other sites

  • 0

Let b = (1+sqrt(2))^4 = 17+12*sqrt(2)

F(0) = 1

F(x) = (round(sqrt(4.246320343559*(b^(x-1)))))^2

I'm pretty sure this works, but here's a recurrence relation that is exact...

s0 = 1

s1 = 4

sx+1 = ( sqrt(sx) + sqrt(2*sx+1) + sqrt(2*(sqrt(sx) + sqrt(2*sx+1))^2 - 1) )^2

Have fun trying to figure out how I derived it! :P

Edited by EventHorizon
Link to comment
Share on other sites

  • 0

questions 1 and 2 answered

1) F(n) = 2(n^2-n) gives the set of all circular numbers. this can be found by adding the diagonal lengths for a circle.

2) since G(n) = n^2 gives the set of all square numbers, the numbers that are both circular and square can be found by setting G(n) = F(n) giving 2(n^2)-2n = n^2 ==> n^2 - 2n = 0 ==> n(n-2) = 0 ==> n = 0,2

so F(2) and F(0) are the only square and circular numbers. since F(0) is trivial since it was established in the question that F(1) is the first circular number, 4 is the only non-trivial number that is both square and circular

Link to comment
Share on other sites

  • 0

The numbers are 1,4,8,24..... They follow 1 is not multipled by any number, the second number is multiple by 1, third is multiplied by 2 and so no.

i.e. 1, 4x1,4x2,8x3,24x4, 96x5

so the numbers are 1,4,8,24,96,480

Please reply whether my answer is correct or not

the first circular number is 1, next is 4.

the 3rd is 8


  x x

x x x x

x x x x

  x x

the 4th is 24

    x x

  x x x x

x x x x x x

x x x x x x

  x x x x

    x x

and so on.

1. write a formula that goes through every circular number.

2. write a formula that only goes through numbers that are both square and circular. (assume integer input)

Link to comment
Share on other sites

  • 0

The numbers are 1,4,8,24..... They follow 1 is not multipled by any number, the second number is multiple by 1, third is multiplied by 2 and so no.

i.e. 1, 4x1,4x2,8x3,24x4, 96x5

so the numbers are 1,4,8,24,96,480

Please reply whether my answer is correct or not

Read through the posts, and you'll see that the OP made a mistake and the third circular number is 12, not 8.

Link to comment
Share on other sites

  • 0

questions 1 and 2 answered

1) F(n) = 2(n^2-n) gives the set of all circular numbers. this can be found by adding the diagonal lengths for a circle.

2) since G(n) = n^2 gives the set of all square numbers, the numbers that are both circular and square can be found by setting G(n) = F(n) giving 2(n^2)-2n = n^2 ==> n^2 - 2n = 0 ==> n(n-2) = 0 ==> n = 0,2

so F(2) and F(0) are the only square and circular numbers. since F(0) is trivial since it was established in the question that F(1) is the first circular number, 4 is the only non-trivial number that is both square and circular

You assume that the same number will need to be fed into both equations. (e.g., same 'n')

How about F(9) = 2(9)(8) = 2*72 = 144 = 12*12 = G(12)

It would be better to say F(n) = G(m), and see what you can say about that.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...