Find 3rd Point of Right Angled Triangle

  • Context: Undergrad 
  • Thread starter Thread starter peader
  • Start date Start date
  • Tags Tags
    Point Triangle
Click For Summary

Discussion Overview

The discussion revolves around finding the coordinates of the third point of a right-angled triangle when the lengths of the sides and the positions of two points are known. Participants explore various mathematical approaches, including vector decomposition, slopes, and area calculations, while addressing the challenges of programming a solution.

Discussion Character

  • Exploratory
  • Technical explanation
  • Debate/contested
  • Mathematical reasoning

Main Points Raised

  • One participant expresses uncertainty about how to find the third point given the lengths of the sides and the positions of two points.
  • Another participant suggests decomposing vectors into components as a potential method for solving the problem.
  • A participant explains the concept of vectors and their components, indicating that understanding vectors is crucial for solving the problem.
  • One participant proposes using slopes to determine the third point, noting that the slopes must satisfy the condition for perpendicular lines.
  • Another participant considers calculating the area of the triangle and working backwards, but acknowledges that this approach may still leave them with two unknowns.
  • There is a discussion about the possibility of obtaining two solutions for the third point, depending on the method used.
  • A participant mentions having hard-coded solutions but expresses a desire to develop a more general solution that can handle triangles of any size.
  • One participant describes a method they devised to find the x-coordinate of the third point using the hypotenuse and the perpendicular height, but they encounter difficulties in determining the correct y-coordinate.

Areas of Agreement / Disagreement

Participants do not reach a consensus on the best method to find the third point, with multiple competing approaches discussed and some uncertainty about the implications of each method.

Contextual Notes

Participants mention the potential for multiple solutions and the challenges of programming a solution without a solid understanding of the underlying mathematics. There are references to the need for further exploration of vector geometry and line equations.

peader
Messages
7
Reaction score
0
OK I have right angled triangle, I no the length of the 3 sides. and the position
of two of the points but i want to be able to figure where the 3rd point is. I
attached a rough sort of diagram so u no wot I'm talkin about. I 'm sure there
is enuf info there to find the point but i just can't get my head round it

Lenght of sides 13, 9 and SQROOT of 13^2 + 9^2 = 16(roughly)
Points = Bottom -> (273,541)
Top -> (273,525)


http://studentweb.itsligo.ie/business/kcomp_b4/s00001829/angles.jpg
 
Last edited by a moderator:
Mathematics news on Phys.org
Do you know how to decompose vectors into components?

- Warren
 
I don't know wot that is??
Could u explain?
 
A vector is a directed line segment -- a distance and a direction.

The components of a vector [itex]\vec u[/itex] on a plane are [itex](l \cos \theta, l \sin \theta)[/itex] where [itex]l[/itex] is the magnitude of the vector.

If you don't know how to use vectors, I'm afraid I won't have much luck helping you understand how to solve this problem. I can't think of an easier way to do it, but I'm a little tired right now.

- Warren
 
Ok that's sound no i don't understand vectors. I'm actually programming it so i mite be able to work another way around it
 
Your model still allows for two possible points. If only two of the points are fixed, then the third can be as you showed in the diagram or it could be reflected across the line described by the two points.

That being said, you could probably figure it out using slopes. Describe the slopes in terms of the points and stipulate that the slopes satisfy the equation m1m2 = -1.

cookiemonster
 
I was thinkin i could work it out by gettibg the area and then workin backwards to the answer but i will still have two unknowns so i don't think that will work properlt
 
Two unknowns? You're going to get two solutions, but you should have only a single unknown.

cookiemonster
 
Well, I really do only see two ways to do this: vector geometry or plain ol' line-equation algebra.

If you have only this one problem to solve, we can give you the solution -- but if you need to write code to solve any triangle like this, you're going to need to bone up on some math. It's pretty tough to write code to do something you don't know how to do by hand.

- Warren
 
  • #10
Two solutions that's what i meant, same as.
 
  • #11
No i need to write code as of now i just have to solution(point) hard coded into it. I want to be able to work this out so as the triangle can be of any size. I vaucly recall doing vector geometry in skul so i'll have a look at that and see if i can recall how it works
 
  • #12
OK i have figured out a way of gettin the x value of the point that i want(see original post), I just got the length of the line between that point and the Hypot. side. I did this by using the hypotneuse as the base and this line as the perpindicular height so now that I have the X value. I think by using the distance formula i should be able to work out Y. Would I be right in assuming this, the only problem is it should return two values for Y the bother is the only Y value I can get is the one that I don't want. Could someone please help, Thanks
 

Similar threads

  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 4 ·
Replies
4
Views
2K
Replies
2
Views
2K
  • · Replies 20 ·
Replies
20
Views
5K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K