Value of the angle in isosceles triangle. Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Why are there isosceles triangles?Proving that the volume of a pyramid is one-third that of its corresponding prism.How to find coordinates of 3rd vertex of a right angled triangle when everything else is known?Calculate the angle from the given points coordinates.Geometry: Finding the sides of the triangle with base and altitude givenArea of an isosceles triangle where the tangents of some angles are in geometric progressionCalculate height of triangle given angle and baseHow to calculate the height of a triangle without using vector cross productThree circles in isosceles trianglecyclic quadrilateral inside an isosceles right triangle
How does the math work when buying airline miles?
What is best way to wire a ceiling receptacle in this situation?
Prove that BD bisects angle ABC
How were pictures turned from film to a big picture in a picture frame before digital scanning?
What makes a man succeed?
What is an "asse" in Elizabethan English?
Significance of Cersei's obsession with elephants?
How can I set the aperture on my DSLR when it's attached to a telescope instead of a lens?
Is CEO the "profession" with the most psychopaths?
Did any compiler fully use 80-bit floating point?
Putting class ranking in CV, but against dept guidelines
If Windows 7 doesn't support WSL, then what is "Subsystem for UNIX-based Applications"?
Co-worker has annoying ringtone
Is there hard evidence that the grant peer review system performs significantly better than random?
Sum letters are not two different
Maximum summed subsequences with non-adjacent items
How did Fremen produce and carry enough thumpers to use Sandworms as de facto Ubers?
Would it be easier to apply for a UK visa if there is a host family to sponsor for you in going there?
How many time has Arya actually used Needle?
Time evolution of a Gaussian wave packet, why convert to k-space?
If the probability of a dog barking one or more times in a given hour is 84%, then what is the probability of a dog barking in 30 minutes?
What does Turing mean by this statement?
What is the chair depicted in Cesare Maccari's 1889 painting "Cicerone denuncia Catilina"?
How do I find out the mythology and history of my Fortress?
Value of the angle in isosceles triangle.
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Why are there isosceles triangles?Proving that the volume of a pyramid is one-third that of its corresponding prism.How to find coordinates of 3rd vertex of a right angled triangle when everything else is known?Calculate the angle from the given points coordinates.Geometry: Finding the sides of the triangle with base and altitude givenArea of an isosceles triangle where the tangents of some angles are in geometric progressionCalculate height of triangle given angle and baseHow to calculate the height of a triangle without using vector cross productThree circles in isosceles trianglecyclic quadrilateral inside an isosceles right triangle
$begingroup$
I try to find a way to calculate value of one of the isosceles triangle angles when I have given values of its height h = 200
and base x = 200
. Values of those can vary depend on the condition, so I need an universal solution. I'll be very grateful for your help.
trigonometry triangles
$endgroup$
add a comment |
$begingroup$
I try to find a way to calculate value of one of the isosceles triangle angles when I have given values of its height h = 200
and base x = 200
. Values of those can vary depend on the condition, so I need an universal solution. I'll be very grateful for your help.
trigonometry triangles
$endgroup$
add a comment |
$begingroup$
I try to find a way to calculate value of one of the isosceles triangle angles when I have given values of its height h = 200
and base x = 200
. Values of those can vary depend on the condition, so I need an universal solution. I'll be very grateful for your help.
trigonometry triangles
$endgroup$
I try to find a way to calculate value of one of the isosceles triangle angles when I have given values of its height h = 200
and base x = 200
. Values of those can vary depend on the condition, so I need an universal solution. I'll be very grateful for your help.
trigonometry triangles
trigonometry triangles
asked Nov 16 '14 at 0:58
bluevoxelbluevoxel
150110
150110
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
If you have a computer, you can say that
a = atan2(x/2, h)
Alternatively, you can use the simpler form
a = arctan(x/(2h))
If you type this into google, for particular values of $x$ and $h$, you'll get the answer you want. For instance, searching for
atan(100/200) in degrees
returned the answer
26.5650512 degrees
The query
atan(200/(2*200)) in degrees
produced the same thing.
A bit more detail.
Computing sine, cosine, and tangent isn't as easy as square root, but it's not insanely hard. It turns out that if you know $tan(a)$ and $tan(b)$ you can use "addition formulas" to compute $tan(a pm b)$ and $tan(a/2)$. Starting from one known value, like
$tan(45^deg) = 1$, you can compute many other values, enough to build a pretty complete table, and then fill in by interpolating. This takes time and energy, but that's life. Once you have a table of tangents, you can swap the columns to give you "inverse tangent" -- a function that says "what angle has this tangent?" That's called "arctan".
In fact, you can build an arctan table using addition rules as well, which is a bit more direct. Proving the addition laws? That's what trigonometry is all about.
It turns out that $arctan(x)$ can be expressed as a polynomial in $x$...but one with infinitely many terms. Fortunately, for small $x$, most of the terms are very small, so you can get away with evaluating just the first few (i.e., the larger) terms without making much error. This is in fact what the Java Math library's authors do, albeit in a somewhat more sophisticated way. The proof that arctan can be written as a polynomial comes up in calculus, under the general heading of "Approximation by Polynomials", or more specifically, "Taylor Series". Textbooks have multiple chapters about these, so I can't explain it all here, of course. Wish I could, but...
$endgroup$
$begingroup$
To be honest I asked this question in the context of Java, but I would like to know how this function is expressed mathematically. I would like to understand its basis.
$endgroup$
– bluevoxel
Nov 16 '14 at 1:10
$begingroup$
See details added in question.
$endgroup$
– John Hughes
Nov 16 '14 at 1:12
$begingroup$
Cool! Thank you very much. Time to go back to the maths' basics :)
$endgroup$
– bluevoxel
Nov 16 '14 at 1:28
add a comment |
$begingroup$
Using trigonometry, $a=arctan(100/200)$.
$endgroup$
$begingroup$
I believe this should be $arctan(100/200)$.
$endgroup$
– John Hughes
Nov 16 '14 at 1:02
$begingroup$
@JohnHughes - thanks. I've undeleted this since your post only discusses computing the number.
$endgroup$
– Suzu Hirose
Nov 16 '14 at 1:22
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f1023591%2fvalue-of-the-angle-in-isosceles-triangle%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
If you have a computer, you can say that
a = atan2(x/2, h)
Alternatively, you can use the simpler form
a = arctan(x/(2h))
If you type this into google, for particular values of $x$ and $h$, you'll get the answer you want. For instance, searching for
atan(100/200) in degrees
returned the answer
26.5650512 degrees
The query
atan(200/(2*200)) in degrees
produced the same thing.
A bit more detail.
Computing sine, cosine, and tangent isn't as easy as square root, but it's not insanely hard. It turns out that if you know $tan(a)$ and $tan(b)$ you can use "addition formulas" to compute $tan(a pm b)$ and $tan(a/2)$. Starting from one known value, like
$tan(45^deg) = 1$, you can compute many other values, enough to build a pretty complete table, and then fill in by interpolating. This takes time and energy, but that's life. Once you have a table of tangents, you can swap the columns to give you "inverse tangent" -- a function that says "what angle has this tangent?" That's called "arctan".
In fact, you can build an arctan table using addition rules as well, which is a bit more direct. Proving the addition laws? That's what trigonometry is all about.
It turns out that $arctan(x)$ can be expressed as a polynomial in $x$...but one with infinitely many terms. Fortunately, for small $x$, most of the terms are very small, so you can get away with evaluating just the first few (i.e., the larger) terms without making much error. This is in fact what the Java Math library's authors do, albeit in a somewhat more sophisticated way. The proof that arctan can be written as a polynomial comes up in calculus, under the general heading of "Approximation by Polynomials", or more specifically, "Taylor Series". Textbooks have multiple chapters about these, so I can't explain it all here, of course. Wish I could, but...
$endgroup$
$begingroup$
To be honest I asked this question in the context of Java, but I would like to know how this function is expressed mathematically. I would like to understand its basis.
$endgroup$
– bluevoxel
Nov 16 '14 at 1:10
$begingroup$
See details added in question.
$endgroup$
– John Hughes
Nov 16 '14 at 1:12
$begingroup$
Cool! Thank you very much. Time to go back to the maths' basics :)
$endgroup$
– bluevoxel
Nov 16 '14 at 1:28
add a comment |
$begingroup$
If you have a computer, you can say that
a = atan2(x/2, h)
Alternatively, you can use the simpler form
a = arctan(x/(2h))
If you type this into google, for particular values of $x$ and $h$, you'll get the answer you want. For instance, searching for
atan(100/200) in degrees
returned the answer
26.5650512 degrees
The query
atan(200/(2*200)) in degrees
produced the same thing.
A bit more detail.
Computing sine, cosine, and tangent isn't as easy as square root, but it's not insanely hard. It turns out that if you know $tan(a)$ and $tan(b)$ you can use "addition formulas" to compute $tan(a pm b)$ and $tan(a/2)$. Starting from one known value, like
$tan(45^deg) = 1$, you can compute many other values, enough to build a pretty complete table, and then fill in by interpolating. This takes time and energy, but that's life. Once you have a table of tangents, you can swap the columns to give you "inverse tangent" -- a function that says "what angle has this tangent?" That's called "arctan".
In fact, you can build an arctan table using addition rules as well, which is a bit more direct. Proving the addition laws? That's what trigonometry is all about.
It turns out that $arctan(x)$ can be expressed as a polynomial in $x$...but one with infinitely many terms. Fortunately, for small $x$, most of the terms are very small, so you can get away with evaluating just the first few (i.e., the larger) terms without making much error. This is in fact what the Java Math library's authors do, albeit in a somewhat more sophisticated way. The proof that arctan can be written as a polynomial comes up in calculus, under the general heading of "Approximation by Polynomials", or more specifically, "Taylor Series". Textbooks have multiple chapters about these, so I can't explain it all here, of course. Wish I could, but...
$endgroup$
$begingroup$
To be honest I asked this question in the context of Java, but I would like to know how this function is expressed mathematically. I would like to understand its basis.
$endgroup$
– bluevoxel
Nov 16 '14 at 1:10
$begingroup$
See details added in question.
$endgroup$
– John Hughes
Nov 16 '14 at 1:12
$begingroup$
Cool! Thank you very much. Time to go back to the maths' basics :)
$endgroup$
– bluevoxel
Nov 16 '14 at 1:28
add a comment |
$begingroup$
If you have a computer, you can say that
a = atan2(x/2, h)
Alternatively, you can use the simpler form
a = arctan(x/(2h))
If you type this into google, for particular values of $x$ and $h$, you'll get the answer you want. For instance, searching for
atan(100/200) in degrees
returned the answer
26.5650512 degrees
The query
atan(200/(2*200)) in degrees
produced the same thing.
A bit more detail.
Computing sine, cosine, and tangent isn't as easy as square root, but it's not insanely hard. It turns out that if you know $tan(a)$ and $tan(b)$ you can use "addition formulas" to compute $tan(a pm b)$ and $tan(a/2)$. Starting from one known value, like
$tan(45^deg) = 1$, you can compute many other values, enough to build a pretty complete table, and then fill in by interpolating. This takes time and energy, but that's life. Once you have a table of tangents, you can swap the columns to give you "inverse tangent" -- a function that says "what angle has this tangent?" That's called "arctan".
In fact, you can build an arctan table using addition rules as well, which is a bit more direct. Proving the addition laws? That's what trigonometry is all about.
It turns out that $arctan(x)$ can be expressed as a polynomial in $x$...but one with infinitely many terms. Fortunately, for small $x$, most of the terms are very small, so you can get away with evaluating just the first few (i.e., the larger) terms without making much error. This is in fact what the Java Math library's authors do, albeit in a somewhat more sophisticated way. The proof that arctan can be written as a polynomial comes up in calculus, under the general heading of "Approximation by Polynomials", or more specifically, "Taylor Series". Textbooks have multiple chapters about these, so I can't explain it all here, of course. Wish I could, but...
$endgroup$
If you have a computer, you can say that
a = atan2(x/2, h)
Alternatively, you can use the simpler form
a = arctan(x/(2h))
If you type this into google, for particular values of $x$ and $h$, you'll get the answer you want. For instance, searching for
atan(100/200) in degrees
returned the answer
26.5650512 degrees
The query
atan(200/(2*200)) in degrees
produced the same thing.
A bit more detail.
Computing sine, cosine, and tangent isn't as easy as square root, but it's not insanely hard. It turns out that if you know $tan(a)$ and $tan(b)$ you can use "addition formulas" to compute $tan(a pm b)$ and $tan(a/2)$. Starting from one known value, like
$tan(45^deg) = 1$, you can compute many other values, enough to build a pretty complete table, and then fill in by interpolating. This takes time and energy, but that's life. Once you have a table of tangents, you can swap the columns to give you "inverse tangent" -- a function that says "what angle has this tangent?" That's called "arctan".
In fact, you can build an arctan table using addition rules as well, which is a bit more direct. Proving the addition laws? That's what trigonometry is all about.
It turns out that $arctan(x)$ can be expressed as a polynomial in $x$...but one with infinitely many terms. Fortunately, for small $x$, most of the terms are very small, so you can get away with evaluating just the first few (i.e., the larger) terms without making much error. This is in fact what the Java Math library's authors do, albeit in a somewhat more sophisticated way. The proof that arctan can be written as a polynomial comes up in calculus, under the general heading of "Approximation by Polynomials", or more specifically, "Taylor Series". Textbooks have multiple chapters about these, so I can't explain it all here, of course. Wish I could, but...
edited Nov 16 '14 at 1:19
answered Nov 16 '14 at 1:01
John HughesJohn Hughes
65.5k24292
65.5k24292
$begingroup$
To be honest I asked this question in the context of Java, but I would like to know how this function is expressed mathematically. I would like to understand its basis.
$endgroup$
– bluevoxel
Nov 16 '14 at 1:10
$begingroup$
See details added in question.
$endgroup$
– John Hughes
Nov 16 '14 at 1:12
$begingroup$
Cool! Thank you very much. Time to go back to the maths' basics :)
$endgroup$
– bluevoxel
Nov 16 '14 at 1:28
add a comment |
$begingroup$
To be honest I asked this question in the context of Java, but I would like to know how this function is expressed mathematically. I would like to understand its basis.
$endgroup$
– bluevoxel
Nov 16 '14 at 1:10
$begingroup$
See details added in question.
$endgroup$
– John Hughes
Nov 16 '14 at 1:12
$begingroup$
Cool! Thank you very much. Time to go back to the maths' basics :)
$endgroup$
– bluevoxel
Nov 16 '14 at 1:28
$begingroup$
To be honest I asked this question in the context of Java, but I would like to know how this function is expressed mathematically. I would like to understand its basis.
$endgroup$
– bluevoxel
Nov 16 '14 at 1:10
$begingroup$
To be honest I asked this question in the context of Java, but I would like to know how this function is expressed mathematically. I would like to understand its basis.
$endgroup$
– bluevoxel
Nov 16 '14 at 1:10
$begingroup$
See details added in question.
$endgroup$
– John Hughes
Nov 16 '14 at 1:12
$begingroup$
See details added in question.
$endgroup$
– John Hughes
Nov 16 '14 at 1:12
$begingroup$
Cool! Thank you very much. Time to go back to the maths' basics :)
$endgroup$
– bluevoxel
Nov 16 '14 at 1:28
$begingroup$
Cool! Thank you very much. Time to go back to the maths' basics :)
$endgroup$
– bluevoxel
Nov 16 '14 at 1:28
add a comment |
$begingroup$
Using trigonometry, $a=arctan(100/200)$.
$endgroup$
$begingroup$
I believe this should be $arctan(100/200)$.
$endgroup$
– John Hughes
Nov 16 '14 at 1:02
$begingroup$
@JohnHughes - thanks. I've undeleted this since your post only discusses computing the number.
$endgroup$
– Suzu Hirose
Nov 16 '14 at 1:22
add a comment |
$begingroup$
Using trigonometry, $a=arctan(100/200)$.
$endgroup$
$begingroup$
I believe this should be $arctan(100/200)$.
$endgroup$
– John Hughes
Nov 16 '14 at 1:02
$begingroup$
@JohnHughes - thanks. I've undeleted this since your post only discusses computing the number.
$endgroup$
– Suzu Hirose
Nov 16 '14 at 1:22
add a comment |
$begingroup$
Using trigonometry, $a=arctan(100/200)$.
$endgroup$
Using trigonometry, $a=arctan(100/200)$.
edited Nov 16 '14 at 1:21
answered Nov 16 '14 at 1:01
Suzu HiroseSuzu Hirose
4,18021228
4,18021228
$begingroup$
I believe this should be $arctan(100/200)$.
$endgroup$
– John Hughes
Nov 16 '14 at 1:02
$begingroup$
@JohnHughes - thanks. I've undeleted this since your post only discusses computing the number.
$endgroup$
– Suzu Hirose
Nov 16 '14 at 1:22
add a comment |
$begingroup$
I believe this should be $arctan(100/200)$.
$endgroup$
– John Hughes
Nov 16 '14 at 1:02
$begingroup$
@JohnHughes - thanks. I've undeleted this since your post only discusses computing the number.
$endgroup$
– Suzu Hirose
Nov 16 '14 at 1:22
$begingroup$
I believe this should be $arctan(100/200)$.
$endgroup$
– John Hughes
Nov 16 '14 at 1:02
$begingroup$
I believe this should be $arctan(100/200)$.
$endgroup$
– John Hughes
Nov 16 '14 at 1:02
$begingroup$
@JohnHughes - thanks. I've undeleted this since your post only discusses computing the number.
$endgroup$
– Suzu Hirose
Nov 16 '14 at 1:22
$begingroup$
@JohnHughes - thanks. I've undeleted this since your post only discusses computing the number.
$endgroup$
– Suzu Hirose
Nov 16 '14 at 1:22
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f1023591%2fvalue-of-the-angle-in-isosceles-triangle%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown