Answer:
3
Step-by-step explanation:
The dress originally costs $120.
In order to find this, you need to divide the current cost by the percentage you are paying for. Since it's 75% off, you are paying for 25% of the dress's original cost. Therefore, divide 30 by 25%.
30/.25 = $120
At most means less than or equal to:
7 + x ≤ 20
Answer:
x = 8
Step-by-step explanation:
Since the triangle is right use Pythagoras' identity to solve for x
The square on the hypotenuse is equal to the sum of the squares on the other two sides, thus
x² + 6² = 10²
x² + 36 = 100 ( subtract 36 from both sides )
x² = 64 ( take the square root of both sides )
x =
= 8
Answer:
See definition below
Step-by-step explanation:
Since we have to give a recursive definition, we must give a initial value f(0). Additionally, the value of f(n) must depend on the value of f(n-1) for all n≥1.
The required value of f(0) is (0+1)!=1!=1.
Now, the factorial itself is a recursive function, because (n+1)!=(n+1)n!. In terms of f, this means that f(n)=(n+1)f(n-1) for all n≥1.
Then, our definition is: f:N→N is defined by
- f(0)=1.
- For n≥1, f(n)=(n+1)f(n-1).