Author Topic: Trapezoid question  (Read 933 times)

0 Members and 1 Guest are viewing this topic.

paulmcz

  • Newt
  • Posts: 179
Trapezoid question
« on: October 06, 2005, 06:59:59 am »
Calculate "len" side

Kerry

  • Mesozoic Relic
  • Needs a day job
  • Posts: 9676
  • class keyThumper<T>:ILazy<T>
Re: Trapezoid question
« Reply #1 on: October 06, 2005, 07:06:55 am »
How about with just dim W ??
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline : absolutely none at all.

--> Donate to TheSwamp <--

Kerry

  • Mesozoic Relic
  • Needs a day job
  • Posts: 9676
  • class keyThumper<T>:ILazy<T>
Re: Trapezoid question
« Reply #2 on: October 06, 2005, 07:11:19 am »
Is this a [Question:] type question that you know the answer to, or a real <normal> question ?
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline : absolutely none at all.

--> Donate to TheSwamp <--

paulmcz

  • Newt
  • Posts: 179
Re: Trapezoid question
« Reply #3 on: October 06, 2005, 07:32:23 am »
I came across this problem recently and I had to find the answer. I found it quite interesting so I thought I would post it here as a bit of a challenge to some,

hendie

  • Water Moccasin
  • Posts: 2175
Re: Trapezoid question
« Reply #4 on: October 06, 2005, 07:32:59 am »
I'm a bit rusty on this stuff ~ are you looking for an actual figure or just the formula ?

If the 3 Len's are equal, then the trapezoid must be formed from 3 equilateral triangles, therefore Len must be equal to 0.5*W, the acute angles must be 60° and the obtuse angles = 120°
therefore, h is easy to work out using Pythagoras' theory.... h = SQRT (Len² - ½w²)

of course I could be completely miles away here
Politics and the fate of mankind are shaped by men without ideals and without greatness. Men who have greatness within them don’t go in for politics.
Albert Camus Notebooks, 1935–42




Synergis Adept / Acad2004

Kerry

  • Mesozoic Relic
  • Needs a day job
  • Posts: 9676
  • class keyThumper<T>:ILazy<T>
Re: Trapezoid question
« Reply #5 on: October 06, 2005, 07:39:20 am »
Consider it to be HALF of an Inclosed Polygon.

As Hendie mentioned the angles are 60 and 120 degrees.

The length len is equal to the circle radius, half of length W.

Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline : absolutely none at all.

--> Donate to TheSwamp <--

paulmcz

  • Newt
  • Posts: 179
Re: Trapezoid question
« Reply #6 on: October 06, 2005, 07:44:12 am »
formula, code, steps to draw it........ anything

Kerry

  • Mesozoic Relic
  • Needs a day job
  • Posts: 9676
  • class keyThumper<T>:ILazy<T>
Re: Trapezoid question
« Reply #7 on: October 06, 2005, 07:50:27 am »
Whoa .. That will teach me to be presumptuous, shouldn't it

:)
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline : absolutely none at all.

--> Donate to TheSwamp <--

hendie

  • Water Moccasin
  • Posts: 2175
Re: Trapezoid question
« Reply #8 on: October 06, 2005, 08:00:37 am »
ok, I'll take the easy route.
Draw a line X any length from A to B
Draw a circle at A of diameter 0.5*X
Draw a circle at B of diameter 0.5*X
Draw a circle using TAN, TAN, RADIUS from Circle 1 to Circle 2 and enter same radius as previous
Now draw line from A to first & second circles intersection, the to second & third circles intersection, then to point B
Done

if I had time I would code it but ...
Politics and the fate of mankind are shaped by men without ideals and without greatness. Men who have greatness within them don’t go in for politics.
Albert Camus Notebooks, 1935–42




Synergis Adept / Acad2004

Kerry

  • Mesozoic Relic
  • Needs a day job
  • Posts: 9676
  • class keyThumper<T>:ILazy<T>
Re: Trapezoid question
« Reply #9 on: October 06, 2005, 08:29:58 am »
No Hendie, That wont do it.

I'm guessing it would need a simultanius equation of some form.

Imagine if the base is less than length LEN. The formulae would have to work in that case too.

It's past my bedtime. I'll probably dream about this paulmcz, not good !!
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline : absolutely none at all.

--> Donate to TheSwamp <--

paulmcz

  • Newt
  • Posts: 179
Re: Trapezoid question
« Reply #10 on: October 06, 2005, 09:44:47 am »
It's past my bedtime. I'll probably dream about this paulmcz, not good !!

You made my day man.   :lmao:  It happens to me very often.

paulmcz

  • Newt
  • Posts: 179
Re: Trapezoid question
« Reply #11 on: October 06, 2005, 09:58:32 am »
ok, I'll take the easy route.
Draw a line X any length from A to B
Draw a circle at A of diameter 0.5*X
Draw a circle at B of diameter 0.5*X
Draw a circle using TAN, TAN, RADIUS from Circle 1 to Circle 2 and enter same radius as previous
Now draw line from A to first & second circles intersection, the to second & third circles intersection, then to point B
Done

if I had time I would code it but ...

Kerry is right Hendie, it won't do it.

CarlB

  • Guest
Re: Trapezoid question
« Reply #12 on: October 06, 2005, 02:49:13 pm »
Steps to draw:

Draw base of length w.  Draw circles with R=len, centered on baseline endpoints.  Draw vertical line up from midpoint of baseline, arbitrary legth.  offet the line 1/2 len to each side.  Where the offset lines intersect the circles are the endpoints of the top of the trapezoid.

Tom

  • Newt
  • Posts: 93
Re: Trapezoid question
« Reply #13 on: October 06, 2005, 04:55:16 pm »
Draw a line any length - base line
from one end say left draw a circle rad @ half the line length
from same end draw a line "A" at 60 deg to base line passing over circle
from intersecting point draw a line "B" parralell to base line
mirror "A" about mid point of base line
trim overlaps and thats it

paulmcz

  • Newt
  • Posts: 179
Re: Trapezoid question
« Reply #14 on: October 06, 2005, 06:30:17 pm »
Steps to draw:

Draw base of length w.  Draw circles with R=len, centered on baseline endpoints.  Draw vertical line up from midpoint of baseline, arbitrary legth.  offet the line 1/2 len to each side.  Where the offset lines intersect the circles are the endpoints of the top of the trapezoid.

Can't draw circle with R=len untill we know "len" dimension. The only known is height (h) and width (w) of the baseline. Your method is fine only if "len" is known.