Mmmmm Maybe you should try doing something doing something doing something during
Answer:
<em>2 solutions</em>
Step-by-step explanation:
Given the expression
2m/2m+3 - 2m/2m-3 = 1
Find the LCM of the expression at the left hand side:
2m(2m-3)-2m(2m+3)/(2m+3)(2m-3) = 1
open the bracket
4m²-6m-4m²-6m/(4m²-9) = 1
Cross multiply
4m²-6m-4m²-6m = 4m² - 9
-12m = 4m² - 9
4m² - 9+12m = 0
4m² +12m-9 = 0
<em>Since the resulting equation is a quadratic equation, it will have 2 solutions since the degree of the equation is 2</em>
Answer:
If you're asking what the perimeter is:
C 32cm
If you're asking what the length of a side is:
A 8cm
Step-by-step explanation:
Area of a square is calculated by length x width.
And all four sides of a square are equal in length.
Area: 8cm×8cm=64cm2
Perimeter: 8cm + 8cm + 8cm + 8cm= 32cm
Another way to find the length of the sides would be to take the square root of 64. I believe that only works with the area of a square though.
√(64)=8
The answer is (-2,-3) Thank you and please rate if I helped you! Thanks again!
#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)