Answer:
x=0.625
Step-by-step explanation:
-(-2x+1)=9-14x
distribute:
2x-1=9-14x
add 1 to both sides
2x = 10-14x
add 14x to both sides
16x=10
divide by 16 to isolate x
x = 0.625
check:
-(-2(0.625)+1) = 9-14(0.625)
0.25 = 0.25
Divide both.
82/8=10.25
37/4=9.25
The first is greater.
Answer:
121
Step-by-step explanation:
- Find 10% of 110:
×
- Increase means add: 110 + 11 = 121
Answer:
scalene acute
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)