Given:
Consider the equation is

To find:
The value of x.
Solution:
We have,

Using properties of exponents, we get
![[\because \dfrac{a^m}{a^n}=a^{m-n},a^{-n}=\dfrac{1}{a^n}]](https://tex.z-dn.net/?f=%5B%5Cbecause%20%5Cdfrac%7Ba%5Em%7D%7Ba%5En%7D%3Da%5E%7Bm-n%7D%2Ca%5E%7B-n%7D%3D%5Cdfrac%7B1%7D%7Ba%5En%7D%5D)
On comparing both sides, we get

Add 16 on both sides.


Multiply both sides by -1.

Therefore, the value of x is 8.
Answer:
<u>14 students</u> at Hamilton Middle School have red hair.
Step-by-step explanation:
Given:
2%, percent of the students at Hamilton Middle School have red hair.
There are 700 students at Hamilton Middle School.
Now, to find the number of students at Hamilton Middle School having red hair.
Total number of students = 700.
Percent of the students at Hamilton Middle School have red hair = 2%.
Now, to get the number of students at Hamilton Middle School having red hair:

Therefore, 14 students at Hamilton Middle School have red hair.
Answer:
2263.74
Step-by-step explanation:
Answer:
inifinitely many solutions
Step-by-step explanation:
#include <stdio.h> #include <stdlib.h>
// Function to perform division (x / y) of two numbers x and y. // without using division operator in the code. int divide(int x, int y)
{ // handle divisibility by 0. if (y == 0)
{ printf("Error!! Divisible by 0"); exit(1);
} // store sign of the result.
int sign = 1; if (x * y < 0)