4

I'm trying to find values ​​for "x" using Solve, but I do not think it's the best solution. What is the most appropriate function to calculate this?

Solve[Tan[α] == a/x && Tan[2 α] == (a + 5)/x && x^2 + (a + 5)^2 == 10^2, {x, a}]

enter image description here

  • Solve[Tan[\[Alpha]] == a/x && Tan[2 \[Alpha]] == (a + 5)/x && x^2 + (a + 5)^2 == 100 && 0 < \[Alpha] < Pi/4 && 0 < a < 10 && 0 < x < 10, {x, a, \[Alpha]}] – Feyre Dec 06 '16 at 12:36

1 Answers1

2

Adding to the comments of Feyre

values={a,x,α}/.Solve[Tan[α]==a/x&&Tan[2 α]==(a+5)/x&&x^2+(a+5)^2==100&&0<α<Pi/2&&0<a<10&&0<x<10,{x,a,α}]//N;
a=values[[1,1]]
x=values[[1,2]]
α=values[[1,3]]

a=3 x=6 α=0.463648 rad

LCarvalho
  • 9,233
  • 4
  • 40
  • 96