Sorry I didn't know how to make the title better to represent the question properly, but here it goes. You have 3 trees on an island. Let's call them A,B and D. You walk from D to A, then you turn 90∘ to the left and walk the same distance, and then mark that point, let's call it K1. Then, you walk from D to B, then you turn 90∘ to the right and walk the same distance and mark that point as K2. In the middle point between K1 and K2 is the treasure! However, when you go to the island, you see that D tree is gone! How can you find the treasure by using vector algebra? (using complex numbers is not allowed)
2026-05-04 21:06:10.1777928770
Finding coordinates of a third point using vector algebra
326 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in VECTOR-ANALYSIS
- Does curl vector influence the final destination of a particle?
- Gradient and Hessian of quadratic form
- Regular surfaces with boundary and $C^1$ domains
- Estimation of connected components
- Finding a unit vector that gives the maximum directional derivative of a vector field
- Gradient of transpose of a vector.
- Solve line integral
- Directional derivative: what is the relation between definition by limit and definition as dot product?
- Chain rule with intermediate vector function
- For which $g$ is $f(x)= g(||x||) \frac{x}{||x||}$ divergence free.
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
Let’s do this first using the prohibited complex numbers, as the solution is a bit simpler when expressed that way. We can then translate it into vectors.
Multiplying $i$ rotates a complex number 90° counterclockwise, and multiplying by $-i$ rotates it clockwise. Using this we have $$K_1=A+(A-D)\,i \\ K_2=B-(B-D)\,i$$ and their midpoint is $$\begin{align}X=\frac12(K_1+K_2)&=\frac12[A+(A-D)\,i+B-(B-D)\,i] \\ &=\frac12(A+B)+\frac12(A-B)\,i.\end{align}$$ The location of the treasure is independent of $D$, so we can find the treasure without this tree, as suggested by the problem. The resulting equation for $X$ tells us where to dig: go halfway from $B$ to $A$, turn left, and go the same distance.
The above calculations translate directly into vector terms. Let $R$ represent a 90° counterclockwise rotation. Then we have $$K_1=A+R(A-D)=(I+R)A-RD \\ K_2=B+R^{-1}(B-D)=(I+R^{-1})B-R^{-1}D$$ and $$X=\frac12[(I+R)A-RD+(I+R^{-1})B-R^{-1}D].$$ Now, since these are 90° rotations, then for any vector $V$, $R^{-1}V=-RV$, so this equation becomes $$\begin{align}X &= \frac12[(I+R)A-RD+(I-R)B+RD] \\ &=\frac12[A+RA+B-RB] \\ &= \frac12(A+B)+\frac12R(A-B).\end{align}$$ Finally, $R(x,y)=(-y,x)$, so in terms of coordinates, $$X=\frac12(x_A+x_B,y_A+y_B)+\frac12(y_B-y_A,x_A-x_B).$$