Answer:
1. x = 2, AC = 30, AB - 4
2. y = 4, AB = 34, BC = 34
Step-by-step explanation:
1. AB + BC = AC so 26 + (10 - 3x) = 14x +2 and then add 3x to both sides and subtract 2 from both sides to get x on one side and an integer on the other side which is 34 = 17x and then divide 17 from both sides to get x = 2 and then substitute x into the AC and AB equations to find the values its equal to.
2. The symbol in the given means that the two lengths are congruent which means they are equal to each other so you put the two equations equal to each other and solve for y. 9y -2 = 14 + 5y, so subtract 5y from both sides and add two to both sides to get 4y = 16 and then divide both sides by 4 to get y = 4 and then substitute in the answer to find the lengths of AB and BC.
Answer:
6
Step-by-step explanation:
Hope this helps! Pls give brainliest!
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;
}
Answer:
ploopy eudyeu sududhd
Step-by-step explanation:
they'd ended ehehdh ehdhd ejdufu
Answer:
She estimates that the tripled recipe will need
✔ less than 3
cups of chicken broth.
The exact amount of chicken broth needed is
✔ 9/4
cups.
Step-by-step explanation: