This is the concept of algebra, given that the area of a rectangular pool is (15x-9), the possible dimensions of the pool by factoring will be:
Area=length×width
Area=(15x-9)
factoring the above we get:
Area=3(5x-3)
therefore the possible dimension will be:
length=5x units
width=3 units
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}
Answer:
2/35
Step-by-step explanation:
Assuming that this is without replacement,
The total amount of marbles is 2+9+3+7, or 21.
9 are yellow, 3 are white. this makes 12.
The probability of selecting a white or yellow marble is 12/21.
Now without replacement (comment if it is with replacement.), there are 20 marbles left, and 2 are Cordovan. This means there is a 2/20 chance then of picking a Cordovan marble.
After multiplying the fractions we get
(12/21) * (2/20) = 2/35.
There is a 2/35 chance of selecting a yellow or white, then a cordovan marble.