Answer:
Explanation:
the answer is.....normal view
Let P(n) be "a postage of n cents can be formed using 5-cent and 17-cent stamps if n is greater than 63".Basis step: P(64) is true since 64 cents postage can be formed with one 5-cent and one 17-cent stamp.Inductive step: Assume that P(n) is true, that is, postage of n cents can be formed using 5-cent and 17-cent stamps. We will show how to form postage of n + 1 cents. By the inductive hypothesis postage of n cents can be formed using 5-cent and 17-cent stamps. If this included a 17-cent stamp, replace this 17-cent stamp with two 5-cent stamps to obtain n + 1 cents postage. Otherwise, only 5-cent stamps were used and n 65. Hence there are at least three 5-cent stamps forming n cents. Remove three of these 5-cent stamps and replace them with two 17-cent stamps to obtain n + 1 cents postage.Hence P(n + 1) is true.
D that is the answer but I need 20 words to send this text
Hello there.
<span>What happens when a filter is applied to a database?
</span><span>Some records are permanently removed from the database.
</span>
Answer:
Since no programming language is stated, python will by used.
Explanation:
def isPrime():
#first we ask for a number that will be tested
data= int(input("please enter a number"))
#the next line is where the number will be tested to see if its a prime
if (data>1):
if(data % 2)==1:
print("true")
else:
print("False")
else:
print("Enter a number greater than 1")
isPrime()