Work seriously and you will be eable to answer
Answer:
a = 18.15
Step-by-step explanation:

Combine like terms on the left side of the equation first. Add 7 and 42, then subtract 32 from the answer you get, then subtract 32 from that answer. This is going by order of PEMDAS.
Remember PEMDAS: (numbers 3 & 4 and numbers 5 & 6 are solved from left to right)
- Parentheses
- Exponents
- Multiplication
- Division
- Addition
- Subtraction

After combining like terms on the left side, you get -15. Now combine like terms on the right side of the equation by adding 14.3 and 7.

Get -2a alone by subtracting 21.3 from both sides.

Divide both sides by -2.

In this equation, a should equal
.
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}
Answer:
otterbox costs $95; beats costs $210
Step-by-step explanation:
x = otterbox y = beats
4x + 2y = 800 y = 2x + 20
4x + 2(2x + 20) = 800
4x + 4x +40 = 800
8x + 40 = 800
8x = 800 - 40
8x = 760
x = 760 / 8
x = 95 Otterbox costs $95 each
4x + 2y = 800
4(95) + 2y = 800
380 + 2y = 800
2y = 800 - 380
2y = 420
y = 420 / 2
y = 210 Beats costs $210
4(95) + 2(210) = 800
380 + 420 = 800