Answer:
x=square root 63. Basically the radical 63.
Step-by-step explanation:
So in the first triangle with the 3 in it. You have root 3 and use the a^2 +b^2=c^2 formula. So 3^2 + 3^2= x^2 and then when you solve you get radical 18^2 which is equal to radical 18 or square root 18. Then we go to the bigger triangle and we do the same formula but this time we have the c value which is 9. So we do radical 18^2 + x^2 = 9^2 and then solve that and minus 18 from the 81 since the radical goes off the 18 and you get square root63.
Sorry i couldn't use the signs. Sorry If I'm wrong Hope this helps!.
Answer:
4
Step-by-step explanation:
8% is also 8/100. This would be true for all percents 0 to 100%. If it were 42% it can be written as 42/100.
So, 8% is 8/100. If you want to find 8/100 of 50 multiply them.
8/100 * 50/1 = (8*50) /100
400/100 = 4
It is A and if you dont think i an right all you have to do is add and see what number is the closest
For me personally, the easiest way to do this is by isolating the x² term, and finding the square root of both sides. The hardest way (well actually, the longest way) would be to use the quadratic formula. It just complicates things unnecessarily.
Answer:
x=11
Step-by-step explanation:
The switch case works like an if or if-else, where each of the cases are conditionals. Here we have 7 cases and we know that our variable begins with x=5.
First, it enters to case 5 because of x=5, so x+=3, this means we add 3 to the actual value of the variable ⇒ x=8.
At this point, if there's not break the program continues to the next case, executing the statements until a break or the end on the switch is reached.
In this order, the x = 8 and next we add 1 (case 6) ⇒ x=9. We add 2 (case 7) x+=2 ⇒ x=10. Then we rest 1 (case 8) ⇒ x=9 and then we add 1 again as in case 9 ⇒ x=11.