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

Home > Just Math
Area of an Acute Triangle (Posted on 2025-04-02) Difficulty: 3 of 5
Let T be an acute triangle. The area of T is denoted by A. If the length of each side of T is an odd prime number, show that A2 − 3/16 is an integer.

No Solution Yet Submitted by Danish Ahmed Khan    
No Rating

Comments: ( Back to comment list | You must be logged in to post comments.)
Some Thoughts a computer observation -- no proof | Comment 1 of 3
The triangle need not be acute for the result given. The only triangles for which it fails seem to be isosceles triangles which have a measure of one or more of its sides as 2. Triangles with a side that is 2 must be scalene in order for the given remainder to be true.

clearvars
ct=0;
prms= vpa(primes(300));
prms(1)=[];
for asub=1:length(prms)
  a=prms(asub)
  for bsub=asub:length(prms)
    b=prms(bsub);
    for csub=bsub:length(prms)
      c=prms(csub);
      if c>=a+b
        break
      end
      s=(a+b+c)/2;
      A=sqrt(s*(s-a)*(s-b)*(s-c));
      r=A^2-floor(A^2);
      if abs(r-3/16)>.00000001
        fprintf('%6d %6d %6d %15.13f\n',[a b c r])
        ct=ct+1;
        if ct>30
          return
        end
      end
    end
  end
end

verifies the 3/16 remainder value for all odd-prime-side-length triangles, even obtuse ones. The triangles need not be acute for this to hold.

Initially the break was made as

      if c^2>=a^2+b^2
        break
      end

to assure all triangles were acute. The removal of the squaring changed it to verify even for obtuse triangles.

In fact, even if we allow the even prime, 2, as a side length, the 3/16 remainder remains so long as the triangle is not isosceles (including not equilateral).

  Posted by Charlie on 2025-04-02 08:50:34
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 (3)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

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