1 divided by n has an infinite amount of values, and the only restriction is n cannot equal 0 (because 1/0 is undefined).
If we write this as a function:
f(n) = 1/n
A few values are:
f(1/4) = 1/(1/4) = 4
f(1/2) = 1/(1/2) = 2
f(1) = 1/1 = 1
f(2) = 1/2
f(4) = 1/4
Chat with our AI personalities
If you mean: n/5 = 64/40 then the value of n is 8
1
N=4.
Future Value = (Present Value)*(1 + i)^n {i is interest rate per compounding period, and n is the number of compounding periods} Memorize this.So if you want to double, then (Future Value)/(Present Value) = 2, and n = 16.2 = (1 + i)^16 --> 2^(1/16) = 1 + i --> i = 2^(1/16) - 1 = 0.044274 = 4.4274 %
/* note that neither of these functions have been tested, so there may be typos and the like *//* if you're looking to return a real value: */unsigned int complement(unsigned int value){unsigned int returnvalue = 0;while(value){returnvalue = 1;}return returnvalue;}/* if you're looking for a string representing the binary number: */char *complement(unsigned int value){int numchars = 8 * sizeof(unsigned int);int n;char *returnvalue = malloc((numchars + 1) * sizeof(char));for(n = 0; n < numchars; n++){if(value & (1