The area is special

AB=3,BC=4AB=3,BC=4. AE=AB2AE=\frac{AB}{2} and BD=BC2BD=\frac{BC}{2}. ABCABC is a right triangle. Can you tell me the area of BDFEBDFE?

#Geometry

Note by Fahim Muhtamim
1 year, 7 months ago

No vote yet
1 vote

  Easy Math Editor

This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.

When posting on Brilliant:

  • Use the emojis to react to an explanation, whether you're congratulating a job well done , or just really confused .
  • Ask specific questions about the challenge or the steps in somebody's explanation. Well-posed questions can add a lot to the discussion, but posting "I don't understand!" doesn't help anyone.
  • Try to contribute something new to the discussion, whether it is an extension, generalization or other idea related to the challenge.
  • Stay on topic — we're all here to learn more about math and science, not to hear about your favorite get-rich-quick scheme or current world events.

MarkdownAppears as
*italics* or _italics_ italics
**bold** or __bold__ bold

- bulleted
- list

  • bulleted
  • list

1. numbered
2. list

  1. numbered
  2. list
Note: you must add a full line of space before and after lists for them to show up correctly
paragraph 1

paragraph 2

paragraph 1

paragraph 2

[example link](https://brilliant.org)example link
> This is a quote
This is a quote
    # I indented these lines
    # 4 spaces, and now they show
    # up as a code block.

    print "hello world"
# I indented these lines
# 4 spaces, and now they show
# up as a code block.

print "hello world"
MathAppears as
Remember to wrap math in \( ... \) or \[ ... \] to ensure proper formatting.
2 \times 3 2×3 2 \times 3
2^{34} 234 2^{34}
a_{i-1} ai1 a_{i-1}
\frac{2}{3} 23 \frac{2}{3}
\sqrt{2} 2 \sqrt{2}
\sum_{i=1}^3 i=13 \sum_{i=1}^3
\sin \theta sinθ \sin \theta
\boxed{123} 123 \boxed{123}

Comments

If it is a right triangle, the area of BDFE BDFE is 3 3 , which is half the area of the triangle.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import math

# Coordinates of points

thetaABC = (math.pi/2.0)  # angle ABC

Bx = 0.0
By = 0.0

Cx = 4.0
Cy = 0.0

Ax = 3.0*math.cos(thetaABC)
Ay = 3.0*math.sin(thetaABC)

Ex = Ax/2.0
Ey = Ay/2.0

Dx = Cx/2.0
Dy = Cy/2.0

########################################

# Use line intersection equations to find location of point F

b1 = Ey    # y intercept
b2 = Ay

m1 = -Ey/Cx
m2 = -Ay/Cx  # slope

# m1*Fx + b1 = m2*Fx + b2
# Fx*(m1-m2) = b2 - b1

Fx = (b2-b1)/(m1-m2)
Fy = m1*Fx + b1


########################################

# Vectors from B to E,F,D

v1x = Ex - Bx
v1y = Ey - By

v2x = Fx - Bx
v2y = Fy - By

v3x = Dx - Bx
v3y = Dy - By

########################################

# Use cross products to find areas.....
#  ......of triangles EBF and DBF

cross1 = v1x*v2y - v1y*v2x
cross2 = v2x*v3y - v2y*v3x

Area = 0.5*math.fabs(cross1) + 0.5*math.fabs(cross2)

print Area
# Area = 3

Steven Chase - 1 year, 7 months ago

But its a geometry note not computer science.

Fahim Muhtamim - 1 year, 7 months ago

Log in to reply

Is angle ABC allowed to take any value, or is it supposed to be a right triangle?

Steven Chase - 1 year, 7 months ago

Log in to reply

Its a right angle.

Fahim Muhtamim - 1 year, 7 months ago

By GeoGebra,I've got this 2

Fahim Muhtamim - 1 year, 7 months ago

Let, FD=aFD=a, ED=bED=b and DE=cDE=c

By Pithagorus' theorem, we get

AD=22+32=13AD=\sqrt{2^2+3^2}=\sqrt{13}

So, a=133a=\frac{\sqrt{13}}{3}

By the same way, b=736b=\frac{\sqrt{73}}{6}.

And c=322+22=52c=\sqrt{{\frac{3}{2}}^2+2^2}=\frac{5}{2}

Then let,s=a+b+c2s=\frac{a+b+c}{2}

And the area of triangle DEF=s(sa)(sb)(sc)=12DEF=\sqrt{s(s-a)(s-b)(s-c)}=\frac{1}{2}

And thr area of BED=32BED=\frac{3}{2}

And the total area is 12+32=2\frac{1}{2}+\frac{3}{2}=2

Fahim Muhtamim - 1 year, 7 months ago
×

Problem Loading...

Note Loading...

Set Loading...