Post Reply 
Trapezoid Midsegment, Height, Area
06-24-2017, 02:32 AM
Post: #1
Trapezoid Midsegment, Height, Area
The program TRAPEZ calculates the following:

Midsegment length: M = (A + B)/2

Height: H = √( (-A+B+C+D)(A-B+C+D)(A-B+C-D)(A-B-C+D) )/(2 * abs(B-A))

Area: K = M * H

HP Prime Program TRAPEZ
Code:

EXPORT TRAPEZ()
BEGIN
// trapezoid
// 2017-06-23 EWS

INPUT({A,B,C,D},
"Trapezoid",
{"a: ","b: ","c: ","d: "},
{"Top","Bottom","Left","Right"});

M:=(A+B)/2;
I:=(−A+B+C+D)*(A-B+C+D)*(A-B+C-D)*
(A-B-C+D);
IF I≤0 THEN
PRINT();
PRINT("Invalid Trapezoid");
ELSE
H:=√(I)/(2*ABS(B-A));
K:=H*M;
PRINT();
PRINT("Midlength = "+M);
PRINT("Height = "+H);
PRINT("Area = "+K);
END;

END;

Example

A = 13, B = 23, C = 6, D = 7
Results:
Midlength, M = 18
Height, H = 4.139493194
Area, A = 74.3848775

Source:
“Trapezoid” Wikipedia. Edited July 7, 2014. Retrieved July 8, 2014
Current page:
Visit this user's website Find all posts by this user
Quote this message in a reply
06-24-2017, 02:45 PM
Post: #2
RE: Trapezoid Midsegment, Height, Area
(06-24-2017 02:32 AM)Eddie W. Shore Wrote:  The program TRAPEZ calculates the following:

Midsegment length: M = (A + B)/2

Height: H = √( (-A+B+C+D)(A-B+C+D)(A-B+C-D)(A-B-C+D) )/(2 * abs(B-A))

Area: K = M * H

HP Prime Program TRAPEZ
Code:

EXPORT TRAPEZ()
BEGIN
// trapezoid
// 2017-06-23 EWS

INPUT({A,B,C,D},
"Trapezoid",
{"a: ","b: ","c: ","d: "},
{"Top","Bottom","Left","Right"});

M:=(A+B)/2;
I:=(−A+B+C+D)*(A-B+C+D)*(A-B+C-D)*
(A-B-C+D);
IF I≤0 THEN
PRINT();
PRINT("Invalid Trapezoid");
ELSE
H:=√(I)/(2*ABS(B-A));
K:=H*M;
PRINT();
PRINT("Midlength = "+M);
PRINT("Height = "+H);
PRINT("Area = "+K);
END;

END;

Example

A = 13, B = 23, C = 6, D = 7
Results:
Midlength, M = 18
Height, H = 4.139493194
Area, A = 74.3848775

Source:
“Trapezoid” Wikipedia. Edited July 7, 2014. Retrieved July 8, 2014
Current page:
Hello Eddie, my calculations with Excel give me H=413,249319, just a 2 instead of 9
Find all posts by this user
Quote this message in a reply
06-25-2017, 01:05 AM (This post was last modified: 06-25-2017 01:08 AM by SlideRule.)
Post: #3
RE: Trapezoid Midsegment, Height, Area
(06-24-2017 02:32 AM)Eddie W. Shore Wrote:  ... TRAPEZ calculates ... Area = [(A + B)/2] * [√( (-A+B+C+D)(A-B+C+D)(A-B+C-D)(A-B-C+D) )/(2 * abs(B-A))]

Another equation for the area when the only givens of a trapezoid are the four sides (a,b,c,d);
[attachment=4985]

BEST!
SlideRule
Find all posts by this user
Quote this message in a reply
10-02-2017, 10:12 PM (This post was last modified: 10-02-2017 10:13 PM by StephenG1CMZ.)
Post: #4
RE: Trapezoid Midsegment, Height, Area
It may be worth pointing out that a trapezoid is one of those words whose meaning varies regionally...so one always needs to know (or guess) which trapezoid is which.

https://english.stackexchange.com/questi...ped-around

Stephen Lewkowicz (G1CMZ)
https://my.numworks.com/python/steveg1cmz
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)