All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Shapes > Geometry
Square the Circle (Posted on 2004-10-28) Difficulty: 4 of 5
There is a family of curves on the Cartesian plane described by this form:

If n is equal to 2, then it describes an ellipse (if a = b, then it describes a circle).

If n is greater than 2, then this is a "superellipse" (if a = b, then this is a supercircle).

As n increases, the ellipse becomes more "rectangularish", and as n approaches ∞, the limit is a rectangle (or a square if a=b).

What value must n have such that the figure has an area exactly halfway between the associated ellipse (when n=2) and rectangle (when n=∞)?

The graphs below, calculated by varying n with a = b = 1, show this property. Note that as n approaches zero, the curve degenerates into two crossed lines along the x- and y-axes.

No Solution Yet Submitted by SilverKnight    
Rating: 3.0000 (4 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Riemann sums | Comment 7 of 9 |

The following program calculates the area, using Riemann sums for one quadrant and multiplying by 4, for n equal both 2 and 3.162037955231282 (the solution found--with about three more digits of precision than is warranted).

DEFDBL A-Z
CLS
incr = .0000005#
n = 2: t = 0
FOR x = incr / 2 TO 1 - incr / 2 + incr / 1000 STEP incr
  t = t + incr * (1 - x ^ n) ^ (1 / n)
NEXT x
PRINT n, 4 * t

n = 3.162037955231282#: t = 0
FOR x = incr / 2 TO 1 - incr / 2 + incr / 1000 STEP incr
  t = t + incr * (1 - x ^ n) ^ (1 / n)
NEXT x
PRINT n, 4 * t

It found:

 2             3.141592653798805
 3.162037955231282           3.570796328557276

which shows the approximation to pi (at n=2) which this particular increment (.0000005) produces, and the value found for n=3.162037955231282 using the same increment.  The latter value differs from (pi+4)/2 at just about the number of places that the approximation to pi differs from pi, showing the discrepancy is due to the coarseness of the Riemann increment.

It is peculiar, as this is surely the correct answer, that Martin Gardner's "Mathematical Carnival", in the addendum to chapter 18 on Piet Hein's Superellipse, states "Norton Black, using a computer, determined that the value is a trifle greater than 3.17."  Perhaps a slip of the finger from the 6 key to the 7 key?


  Posted by Charlie on 2004-10-29 02:11:20
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (6)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information