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
Goshia [24]
3 years ago
14

How many intergers between 1 and 500 inclusive are divisible by both 6 and 9 but not 4

Mathematics
1 answer:
creativ13 [48]3 years ago
7 0
I think the answer is 14.
the smallest common multiple of 6 and 9 is 18. all multiples of 18 is divisible by 6 and 9. 
500 ÷18=27.777777777
there are 27  numbers between 1 and 500 that are divisible by both 6 and 9, but when the quotient is an even number, the multiple of 18 is divisible by 4 as well, so only the multiples of 18 that produce an odd quotient satisfy the requirement.
from 1 to 27, there are 14 odd numbers. 
You might be interested in
True/False: Perimeter is the number of squares you can fit inside of any shape?
Zina [86]
The answer is true! Good luck!
5 0
2 years ago
Wayne Gretsky scored a Poisson mean six number of points per game. sixty percent of these were goals and forty percent were assi
BartSMP [9]

Answer:

a) The mean for the total revenue he earns per game is of 13.2K while the standard deviation is of 3.63K.

b) 0.05 = 5% probability that he has four goals and two assists in one game

Step-by-step explanation:

In hockey, a point is counted for each goal or assist of the player.

In a Poisson distribution, the probability that X represents the number of successes of a random variable is given by the following formula:

P(X = x) = \frac{e^{-\mu}*\mu^{x}}{(x)!}

In which

x is the number of sucesses

e = 2.71828 is the Euler number

\mu is the mean in the given interval. The standard deviation is the square root of the mean.

(a) Find the mean and standard deviation for the total revenue he earns per game.

60% of six are goals, which means that 60% of the time he earned 3K.

40% of six are goals, which means that 40% of the time he earned 1K.

The mean is:

\mu = 6*0.6*3 + 6*0.4*1 = 13.2

The standard deviation is:

\sigma = \sqrt{\mu} = \sqrt{13.2} = 3.63

The mean for the total revenue he earns per game is of 13.2K while the standard deviation is of 3.63K.

(b) What is the probability that he has four goals and two assists in one game

Goals and assists are independent of each other, which means that we find the probability P(A) of scoring four goals, the probability P(B) of getting two assists, and multiply them.

Probability of four goals:

60% of 6 are goals, which means that:

\mu = 6*0.6 = 3.6

The probability of scoring four goals is:

P(A) = P(X = 4) = \frac{e^{-3.6}*(3.6)^{4}}{(4)!} = 0.19122

Probability of two assists:

40% of 2 are assists, which means that:

\mu = 6*0.4 = 2.4

The probability of getting two assists is:

P(B) = P(X = 2) = \frac{e^{-2.4}*(2.4)^{2}}{(2)!} = 0.26127

Probability of four goals and two assists:

P(A \cap B) = P(A)*P(B) = 0.19122*0.26127 = 0.05

0.05 = 5% probability that he has four goals and two assists in one game

5 0
2 years ago
URGENT, LAST 2 QUESTION!! WILL GIVE BRANLIEST!!! AT LEAST TAKE A LOOK!!
coldgirl [10]

Answer:

C, D

Step-by-step explanation:

hope this helped :)

7 0
3 years ago
6. Solve the following equation for x. Show each step.<br> 5x + 2 = 3x + 4(2x - 1)
monitta

Answer:

x=1

Step-by-step explanation:

5x + 2 = 3x + 4(2x - 1)

Distribute the 4

5x + 2 = 3x + 8x - 4

Combine like terms

5x + 2 = 11x - 4

Subtract 5x from each side

5x -5x + 2 = 11x - 5x - 4

2 = 6x-4

Add 4 to each side

2+4 = 6x-4+4

6 = 6x

Divide each side by 6

6/6 =6x/6

1= x

4 0
2 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
2 years ago
Other questions:
  • Simplify please: 7x^{2}-4x^{2}y-x^{2}+8x^{2}y
    5·1 answer
  • Help due today pleas
    7·1 answer
  • What is the answer to y=2x+1
    5·2 answers
  • Andre and Diego were each trying to solve 2x+6=3x−8. Describe the first step they each make to the equation. The result of Andre
    14·1 answer
  • Write three different fractions that are less than 40%?
    10·2 answers
  • A zoo charges admission of $4.75 for adults and $2.75 for children. A group of 12 people paid for admission with a 50-dollar bil
    15·1 answer
  • Simplify each expression for the perimeter of the deck
    8·1 answer
  • 1. A bag contains 3 red marbles and 4 blue marbles. Two marbles are drawn at random without replacement.
    12·2 answers
  • 28. An aquarium is 7 feet long, 4 feet wide, and 4.8 feet deep. What is the volume of the tank?
    13·1 answer
  • Could you please list all 6 answers below? 30 points and Brainliest if you answer. You have to put them in simplest form.
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!