The reciprocal of a number is the number backwards in fraction form. For example, the reciprocal of 25 would be 1/25. The reciprocal of 5/10 would be 10/5.
-10= 1/-10 5= 1/5 7= 1/7
10
The reciprocal of -1/10 is -10, and the negative of -10 is 10 .
if two numbers sum is 12 and product is 32 then which is reciprocal value?answer is 4
The reciprocal of a number is the number backwards in fraction form. For example, the reciprocal of 25 would be 1/25. The reciprocal of 5/10 would be 10/5.
Quotient of the reciprocal of ten twentieths and five = Quotient of the reciprocal of 10/20 and 5 = Quotient of the reciprocal of 1/2 and 5 = Quotient of 2 and 5 = 2/5 or 0.4
-10= 1/-10 5= 1/5 7= 1/7
The opposite of -2.4 is 2.4. The reciprocal of -2.4=-24/10=-12/5 is -5/12=-0.41(6)
4/10=2/5 so 10/4=5/2
10
The reciprocal of -1/10 is -10, and the negative of -10 is 10 .
5. Think of 0.2 as 2/10 and then invert that fraction to 10/2 and simplify it to 5.
-10
if two numbers sum is 12 and product is 32 then which is reciprocal value?answer is 4
sequence 4 5 6 sum =10 sequecnce 0 5 10 sum=10
There is no sequence of adds or subtracts of 5, 6, 8, 9, and 10 that sum to 1. Check it with this C++ code... for (int i=0; i<32; ++i) { int sum = 0; if (i&1) sum += 5; else sum -= 5; if (i&2) sum += 6; else sum -= 6; if (i&4) sum += 8; else sum -= 8; if (i&8) sum += 9; else sum -= 9; if (i&16) sum += 10; else sum -= 10; cout << i << " " << sum << endl; }