Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Finding Pi
#1
One for the Math (or ”outside-the-box-thinking”) gurus:  
Given an isoscles triangle ABC, with sides b and c (the sides opposite B and C) both 5 units in length, and with angle A=45degrees, is there a (simple?) way to find the length of side a, without resorting to pre-determined trig tables like sin, cos and tan, or pi
The reason I don’t want to use these is I’m trying to demonstrate how pi relates to the circumference of a circle, so I don’t want to involve anything that relies on pi – that would be “bootstrapping”,  sort of like lifting oneself up by the bootlaces.
Of all the places on Earth, and all the planets in the Universe, I'd rather live here (Perth, W.A.) Big Grin
Please visit my Website at: http://oldendayskids.blogspot.com/
Reply
#2
Sure. In this case, it's the simple old a ^ 2 + b^ 2 = c ^2 formula

5 ^ 2 + 5 ^ 2 = c ^ 2
25 + 25 = c ^ 2
SQR(50) = c

7.07 = c

(OR in this case you can also remember the old ratio for 45% triangles... 1 to 1 to SQR(2). Wink )
Reply
#3
To me it looks like you are describing a pyramid shape triangle. 45 degree angle tot he top. Pop a line down the center and you get two right triangles, each with a hypotenuse of 5 unites. Now right triangles you can plug that into the Pythagorean Theorem then you should be good to go.

Just did the math..

3.53553 = 5√2/2 and just multiply by 2 = 7 .07106

Pete

When Steve and I agree, the poles generally shif..........................................t
Reply
#4
Or, if I read the problem wrong (as it seems Pete and I have two different interpertations of the problem), you might want:

Formula for the Base of an Isosceles Triangle
If you know the side length and height of an isosceles triangle, you can find the base of the triangle using this formula:

b = SQR(a ^ 2 - h ^ 2), where a is the length of a side and h is the height.

how to find the third side of a triangle: formula for the base of an isosceles triangle

where a is the length of one of the two known, equivalent sides of the isosceles.
Reply
#5
Or Screw the triangle and try and find the volume of a cone. I just pour out the ice cream into a measuring cup, and wait until it melts to measure that.

Pete
Reply
#6
I get this:
'45 /2 = 22.5
'sin(_d2r(22.5) = a/5 ' Update: actually (1/2 of a) /5 = sin(22.5 degrees)
Print "a ="; 2 * (5 * Sin(_D2R(22.5))) ' 3.8268...

The only way you might avoid a trig table is if you can somehow use the fact that 22.5 is 1/3 of 67.5 the base angles of the iso tri.
My trig not that good.

Here it is illustrated in QB64pe:
Code: (Select All)
Screen _NewImage(800, 600, 32)
'45 /2 = 22.5
'sin(_d2r(22.5) = a/5
Print "a ="; 2 * (5 * Sin(_D2R(22.5))) ' 3.8268...

'draw scale model
xc = 400: yc = 300 ' center of screen
scale = 10
radius = 5 * scale
x1 = xc + radius * Cos(0): y1 = yc + radius * Sin(0)
x2 = xc + radius * Cos(_D2R(45)): y2 = yc + radius * Sin(_D2R(45))
Line (xc, yc)-(x1, y1), &HFF0000FF
Line (xc, yc)-(x2, y2), &HFF0000FF


Color &HFFFFFF00
Line (x1, y1)-(x2, y2),
dist = Sqr((x1 - x2) ^ 2 + (y1 - y2) ^ 2)
Print dist / scale

   
b = b + ...
Reply
#7
Trig? Hey this look like a job for triggered! You know I once asked Bill, Hey Bill, if a boson farts in the forest, but no one is there to observe it, does anyone really give a squark? I still haven't head back. Sad

Pete
Shoot first and shoot people who ask questions, later.
Reply
#8
@PhilOfPerth are you attempting this:
https://www.google.com/search?client=ope...Pl-SbaA_70
b = b + ...
Reply
#9
(11-16-2022, 01:06 AM)SMcNeill Wrote: Sure.  In this case, it's the simple old a ^ 2 + b^ 2 = c ^2 formula

5 ^ 2 + 5 ^ 2 = c ^ 2
25 + 25 = c ^ 2
SQR(50) = c

7.07 = c

(OR in this case you can also remember the old ratio for 45% triangles... 1 to 1 to SQR(2).  Wink )
But that doesn't account for the angle; if A is wide, side a will be large, but if A is narrow, side a will be small. Confused
Of all the places on Earth, and all the planets in the Universe, I'd rather live here (Perth, W.A.) Big Grin
Please visit my Website at: http://oldendayskids.blogspot.com/
Reply
#10
This might be better:
https://www.youtube.com/watch?v=DLZMZ-CT7YU
b = b + ...
Reply




Users browsing this thread: 4 Guest(s)