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

Home > Just Math
Minimum area of a triangle (Posted on 2008-07-30) Difficulty: 3 of 5
Find the minimum area of a triangle whose sides and altitudes are six different integers.

See The Solution Submitted by pcbouhid    
Rating: 2.0000 (2 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
My Perl Program | Comment 5 of 10 |
 
# mta.pl
use warnings;
use strict;
{
my $a;
my $b;
my $c;
my $ha;
my $hb;
my $hc;
my $s;
    for ($c=3;$c<200;$c++) {
      for ($b=$c-1;$b>1;$b--) {
        for ($a=$b-1;$a>$c-$b;$a--) {
          $s = ($a+$b+$c)/2;
          $hc = 2*sqrt($s*($s-$a)*($s-$b)*($s-$c))/$c;
          if (int($hc)==$hc) {
            $hb = $c*$hc/$b;
            if (int($hb)==$hb) {
              $ha = $c*$hc/$a;
              if (int($ha)==$ha) {
                if ($c*$c!=$a*$a+$b*$b) {
                  if ($ha!=$a) {
                    print "c = ",$c,",b = ",$b,",a = ",$a,"\n";
                    print "hc = ",$hc,",hb = ",$hb,",ha = ",$ha,"\n";
                  }
                }
              }
            }
          }         
        }
      }
    }
}

  Posted by Bractals on 2008-07-30 19:20:49
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (1)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (17)
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