1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Angelina_Jolie [31]
3 years ago
15

The pizza shop offers a 15 percent discount for veterans and senior citizens. If the price of a pizza is $12, how would you find

the discounted price?
Mathematics
2 answers:
vlabodo [156]3 years ago
4 0

Answer:

You can subtract the discount percent from 100% and then multiply that by the original price.

lyudmila [28]3 years ago
3 0

Answer:

The pizza price after discount is $10.20

Step-by-step explanation:

turn 15% to decimal

0.15

multiply by $12 to find how much 15% of 15 is

12 x 0.15 = 1.8

know subtract the discount [$1.8]

12 - 1.8 = 10.2

$10.20

Hope this helped! Please mark as brainliest! Thanks!

You might be interested in
I need help :( this problem is very confusing
Sladkaya [172]

Answer:

Emily ,  don't put your whole name in the questions :DDDD, it's at the top of the page, anyway,     Eloper   .. :DDD

Step-by-step explanation:

It's arithmetic  b/c  you're just adding  1

arithmetic

1

1

are the answers ,  the last one is b/c that's the common difference.

6 0
3 years ago
Read 2 more answers
According to the document Current Population Survey, published by the U.S. Census Bureau, 30.4% of U.S. adults 25 years old or o
Marizza181 [45]

Answer:

0.0803 = 8.03% probability that the number who have a high school degree as their highest educational level is exactly 32.

Step-by-step explanation:

For each adult, there are only two possible outcomes. Either they have a high school degree as their highest educational level, or they do not. The probability of an adult having it is independent of any other adult. This means that the binomial probability distribution is used to solve this question.

Binomial probability distribution

The binomial probability is the probability of exactly x successes on n repeated trials, and X can only have two outcomes.

P(X = x) = C_{n,x}.p^{x}.(1-p)^{n-x}

In which C_{n,x} is the number of different combinations of x objects from a set of n elements, given by the following formula.

C_{n,x} = \frac{n!}{x!(n-x)!}

And p is the probability of X happening.

30.4% of U.S. adults 25 years old or older have a high school degree as their highest educational level.

This means that p = 0.304

100 such adults

This means that n = 100

Determine the probability that the number who have a high school degree as their highest educational level is a. Exactly 32

This is P(X = 32).

P(X = x) = C_{n,x}.p^{x}.(1-p)^{n-x}

P(X = 32) = C_{100,32}.(0.304)^{32}.(0.696)^{68} = 0.0803

0.0803 = 8.03% probability that the number who have a high school degree as their highest educational level is exactly 32.

7 0
2 years ago
parents volunteer to make the cones they are given a recipe the recipe calls for 61/2 cups of flour duyi has already added 23/4
frozen [14]
6 1/2 - 2 3/4 = 3 3/4
6.5 - 2.75= 3.75
6 0
3 years ago
13 squared? how does it mean and what is the solution?
Brut [27]
13 squered it means that =13 to the second power
13^{2}=13*13=169

6 0
3 years ago
Read 2 more answers
5. The recursive algorithm given below can be used to compute gcd(a, b) where a and b are non-negative integer, not both zero.
s2008m [1.1K]

Implementating the given algorithm in python 3, the greatest common divisors of <em>(</em><em>124</em><em> </em><em>and</em><em> </em><em>244</em><em>)</em><em> </em>and <em>(</em><em>4424</em><em> </em><em>and</em><em> </em><em>2111</em><em>)</em><em> </em>are 4 and 1 respectively.

The program implementation is given below and the output of the sample run is attached.

def gcd(a, b):

<em>#initialize</em><em> </em><em>a</em><em> </em><em>function</em><em> </em><em>named</em><em> </em><em>gcd</em><em> </em><em>which</em><em> </em><em>takes</em><em> </em><em>in</em><em> </em><em>two</em><em> </em><em>parameters</em><em> </em>

if a>b:

<em>#checks</em><em> </em><em>if</em><em> </em><em>a</em><em> </em><em>is</em><em> </em><em>greater</em><em> </em><em>than</em><em> </em><em>b</em>

return gcd (b, a)

<em>#if</em><em> </em><em>true</em><em> </em><em>interchange</em><em> </em><em>the</em><em> </em><em>Parameters</em><em> </em><em>and</em><em> </em><em>Recall</em><em> </em><em>the</em><em> </em><em>function</em><em> </em>

elif a == 0:

return b

elif a == 1:

return 1

elif((a%2 == 0)and(b%2==0)):

<em>#even</em><em> </em><em>numbers</em><em> </em><em>leave</em><em> </em><em>no</em><em> </em><em>remainder</em><em> </em><em>when</em><em> </em><em>divided</em><em> </em><em>by</em><em> </em><em>2</em><em>,</em><em> </em><em>checks</em><em> </em><em>if</em><em> </em><em>a</em><em> </em><em>and</em><em> </em><em>b</em><em> </em><em>are</em><em> </em><em>even</em><em> </em>

return 2 * gcd(a/2, b/2)

elif((a%2 !=0) and (b%2==0)):

<em>#checks</em><em> </em><em>if</em><em> </em><em>a</em><em> </em><em>is</em><em> </em><em>odd</em><em> </em><em>and</em><em> </em><em>B</em><em> </em><em>is</em><em> </em><em>even</em><em> </em>

return gcd(a, b/2)

else :

return gcd(a, b-a)

<em>#since</em><em> </em><em>it's</em><em> </em><em>a</em><em> </em><em>recursive</em><em> </em><em>function</em><em>,</em><em> </em><em>it</em><em> </em><em>recalls</em><em> </em><em>the function</em><em> </em><em>with </em><em>new</em><em> </em><em>parameters</em><em> </em><em>until</em><em> </em><em>a</em><em> </em><em>certain</em><em> </em><em>condition</em><em> </em><em>is</em><em> </em><em>satisfied</em><em> </em>

print(gcd(124, 244))

print()

<em>#leaves</em><em> </em><em>a</em><em> </em><em>space</em><em> </em><em>after</em><em> </em><em>the</em><em> </em><em>first</em><em> </em><em>output</em><em> </em>

print(gcd(4424, 2111))

Learn more :brainly.com/question/25506437

6 0
3 years ago
Other questions:
  • What are compatible numbers?
    5·2 answers
  • (5) in simplist fraction form
    15·2 answers
  • Zach can read 7pages of a book in 5 minutes at this rate how long will it take him to read 175 pages
    6·1 answer
  • Sea level is defined as an altitude of 0 ft. A scuba diver dives into the water and, in 3 min, her altitude drops from 0 ft to −
    11·1 answer
  • Complete this statement 27a^2x^2+45a^2x+36a^2=9a^2()
    8·1 answer
  • A pair of sunglasses cost $26 during the summer sale. If
    9·1 answer
  • Find the area of a regular octagon with an apothem of 8.45 cm and a side length of 7 cm. (round to the nearest whole number) A)
    8·1 answer
  • Find each answer.
    11·1 answer
  • Which function is undefined when Theta = StartFraction pi Over 2 EndFraction radians? cos Theta cot Theta csc Theta tan Theta.
    14·1 answer
  • Can someone help me please
    9·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!