Answer: the odds would still be 1/11 or the percentage of drawing a "g" would be 9.1%
Step-by-step explanation:
Answer:
6.8, 16.6, 26.4, 36.2
Step-by-step explanation:
Let's write the sequence, d is the common difference:
- 3, - 3 + d, - 3 + 2d, -3 + 3d, - 3 + 4d, 46
Therefore 46 = -3 + 5d
5d = 49
d = 49/5 = 9.8
So the first arithmetic mean is -3 + 9.8 = 6.8. and the second is -3 + 2(9.8) = 16.6...
They are:
6.8, 16.6, 26.4, 36.2.
The product to 2.25 x 0.04 is 0.09
Answer:
4 / x¹⁴y⁸
Step-by-step explanation:
eliminate parenthese by multiplying all exponents inside parentheses by the exponent outside the parentheses:
1/2⁶ ÷ 1/4⁴ = 1/64 ÷ 1/256 which equals 256/64 or 4
x⁻⁶y⁴ ÷ x⁸y¹² = x⁻¹⁴y⁻⁸ = 1/x¹⁴ · 1/y⁸
put it all together to get:
4÷(x¹⁴y⁸)
// Input value is usernum.
// This code snippet sums 1 + 3 + 5 + ... + usernum
// The answer is stored in the variable summedvalue.
N = (int) (usernum+1)/2; // maximum number of integers to be summed
int *v = malloc(N*sizeof(int)); // allocate storage for array v
// Calculate the number of loop counts and assign array v..
count = 0;
k = 1;
while (1) {
if (k>usernum) { // do not extend v beyond usernum
break;
}
v(count) = k; // assign an odd integer to v, including usenum
count++;
k += 2; // k is an odd number
if k>usernum { // handle usernum as odd or even
k = usernum;
}
}
n = count; // the size of array v.
// Calculate the sum in a for loop
summedvalue = 0; // initialize summedvalue
for (i=0; i<=n; i++) {
summedvalue += v(i);
}