Answer:
x=12 and
(9*12)-10=98
(5*12)+38=98
both angles are = 98
Step-by-step explanation:
do this :
9x - 10 = 5x + 38
( - 5x from both sides)
4x - 10 = 38
(add 10 to both sides)
4x = 38+10
4x=48
(divide by 4)
x=48/4
= 12
substitute into the equations:
(9*12)-10
(5*12)+38
Answer:
5
Step-by-step explanation:
xy-5
plug in 5 for x and 2 for y
5*2-5
multiply
10-5
subtract
5
F(5) = 5² +4*5=25+20 = 45
g(6) = 2*6 +2 =12+2=14
f(5) + g(6)= 45 +14 =59
Answer:
5 feet = 1 inch
Step-by-step explanation:
20 / 4 = 5
5 feet = 1 inch
I will be using the language C++. Given the problem specification, there are an large variety of solving the problem, ranging from simple addition, to more complicated bit testing and selection. But since the problem isn't exactly high performance or practical, I'll use simple addition. For a recursive function, you need to create a condition that will prevent further recursion, I'll use the condition of multiplying by 0. Also, you need to define what your recursion is.
To wit, consider the following math expression
f(m,k) = 0 if m = 0, otherwise f(m-1,k) + k
If you calculate f(0,k), you'll get 0 which is exactly what 0 * k is.
If you calculate f(1,k), you'll get 0 + k, which is exactly what 1 * k is.
So here's the function
int product(int m, int k)
{
if (m == 0) return 0;
return product(m-1,k) + k;
}