0

I'm having trouble with this equation. I thought it would be easy to solve using the quadratic formula, but I have no idea how to start. This is not homework, but I would like to know how to solve this in terms of $t$. Both sides are pretty much the same since it has to do with two points $(a,b)$ and $(c,d)$ which are equidistant to the point $(t,\sqrt{1-t^2})$, but this information is not relevant to the problem. How do I isolate $t$ in this situation:

$a^2-2b\cdot \sqrt{1-t^2}+b^2+2ct=c^2-2d\cdot \sqrt{1-t^2}+d^2+2at$

name
  • 395
  • Put the square root terms on one side, everything else on the other, and square. – Chappers Jul 25 '17 at 16:29
  • 1
    @Chappers That would involve a lot of distributing wouldn't it? If that is the best way to solve it then I guess I'm up for the work. – name Jul 25 '17 at 16:31
  • It's probably the only way, without reparametrising using $t=\sin{\theta}$ or something. – Chappers Jul 25 '17 at 16:39
  • what do we know about the variables $$a,b,c,d$$? – Dr. Sonnhard Graubner Jul 25 '17 at 16:43
  • @Dr.SonnhardGraubner Only that the points $(a,b)$ and $(c,d)$ lie on the same circle that the point $(t, \sqrt{1-t^2})$ lies on. Essentially we know nothing about them, since the equation is for a generalization. – name Jul 25 '17 at 16:47
  • And trigonometry is off the table. The purpose of my activity is to not use trig functions. – name Jul 25 '17 at 16:49
  • I think it would make sense that you show us the original problem from which you derived the equation? – miracle173 Jul 25 '17 at 20:53

2 Answers2

3

HINT: your equation can be written in the form $$a^2+b^2-c^2-d^2+(2c-2a)t=\sqrt{1-t^2}(2b-2c)$$ we denote by $$A=a^2+b^2-c^2-d^2$$ $$B=(2c-2a)$$ $$C=2b-2d$$ then we have $$A+Bt=\sqrt{1-t^2}C$$ after squaring we get $$t^2(B^2+C^2)-2ABt+A^2-C^2=0$$ can you solve this?

2

The solution of your problem are the points of the unit circle $u$ that are equidistant to the points $P (a,b)$ and $Q (c,d)$. These can be found by intersecting $u$ with the line segment bisector of the segment $\overline {PQ}$.

miracle173
  • 11,049
  • I didn't think about it that way. That's even easier. – name Jul 25 '17 at 21:32
  • So technically, you could continuously bisect more and more angles on the circle until you get closer to a desired angle, and then be able to find the sine, cosine, and tangent of that angle (based on the point on the circle). Is this an actual feasible way to calculate trig values? And does this method actually have a name? – name Jul 25 '17 at 21:42