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
Irina-Kira [14]
3 years ago
13

Which statements are true? Check all that apply. The equation |–x – 4| = 8 will have two solutions. The equation 3.4|0.5x – 42.1

| = –20.6 will have one solution. The equation StartAbsoluteValue StartFraction one-half EndFraction x minus StartFraction 3 Over 4 EndFraction EndAbsoluteValue equals 0. = 0 will have no solutions. The equation |2x – 10| = –20 will have two solutions. The equation |0.5x – 0.75| + 4.6 = 0.25 will have no solutions. The equation StartAbsoluteValue StartFraction 1 Over 8 EndFraction x minus 1. EndAbsoluteValue equals 5. = 5 will have infinitely many solutions.
Mathematics
2 answers:
lyudmila [28]3 years ago
6 0

Answer:

Options 1 and 5

Step-by-step explanation:

NeX [460]3 years ago
4 0

Answer:

1. The equation |-x -4| = 8 will have two solutions. (True)

5. The equation |0.5x – 0.75| + 4.6 = 0.25 will have no solutions. (True)

Step-by-step explanation:

1. The equation |-x -4| = 8 will have two solutions. (True)

|-x - 4| = 8

-x -4 = ±8

-x -4 = 8 and -x -4 = -8

-x = 8 + 4 and -x = -8 + 4

-x = 12 and -x = -4

x = -12 and x = 4

Therefore, it has two solutions x ∈ {-12, 4}

2. The equation 3.4|0.5x - 42.1| = -20.6 will have one solution. (False)

Since the right side of the equation has a negative value therefore, according to rules of absolute value equations, it has no solution.

3. The equation |1/2x - 3/4| = 0 will have no solutions. (False)

|(1/2)x - 3/4| = 0

(1/2)x - 3/4 = ±0

Since ±0 is the same

(1/2)x = 3/4

x = 2*3/4

x = 3/2

Therefore, it has one solution x = 3/2

4. The equation |2x – 10| = –20 will have two solutions. (False)

Since the right side of the equation has a negative value therefore, according to rules of absolute value equations, it has no solution.

5. The equation |0.5x – 0.75| + 4.6 = 0.25 will have no solutions. (True)

|0.5x – 0.75| + 4.6 = 0.25

|0.5x – 0.75| = 0.25 - 4.6

|0.5x – 0.75| = -4.35

Since the right side of the equation has a negative value therefore, according to rules of absolute value equations, it has no solution.

6. The equation |(1/8)x - 1| = 5 will have infinitely many solutions. (False)

|(1/8)x - 1| = 5

(1/8)x - 1 = ±5

(1/8)x - 1 = 5 and (1/8)x - 1 = -5

(1/8)x = 5 + 1 and (1/8)x = -5 + 1

(1/8)x = 6 and (1/8)x = -4

x = 6*8 and x = -4*8

x = 48 and x = -32

Therefore, it has two solutions x ∈ {48, -32}

You might be interested in
What is the probability of landing on a multiple of 3 in a twenty-sided die?
scoray [572]

Answer:

1by 20

Step-by-step explanation:

no of digit by no of sides

5 0
3 years ago
Find an area of a circle​
FrozenT [24]

The area of a circle is pi times the radius squared (A = π r²).

7 0
3 years ago
Which graph comparing time and dollars would be best represented by an exponential function?
Rasek [7]

Answer:

x and y

Step-by-step explanation:

because it make sense

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
The number of cars (c) in a parking lot increases when the parking fee (f) decreases.
Vitek1552 [10]

The answer is c maybe?
5 0
4 years ago
Other questions:
  • which expression is equivalent to 2m(3/2m+1) +3 (5/3m-2) ? A .3m^2+5m-1 B. 3/4m^2 +23/9m-6 C. 3m^2+7m-6 D. 3/4m^2+5/9m-1 please
    9·2 answers
  • Solve for x in 5x−19≤1 OR −4x+3&lt;−6
    11·2 answers
  • Could you help me with these questions
    13·1 answer
  • How do you write 1,294,849,526,195,970,000,000 in scientific notation
    6·2 answers
  • Charlotte spent 1/2 of the day shopping at the mall. She spent 1/4 of this time trying on jeans. What fraction of the days did C
    5·2 answers
  • The product of two whole numbers is 75. Their average is 10. What are the numbers?
    10·2 answers
  • At the school carnival, Luke bought a hot dog for $2. He also bought game tickets for $0.25
    6·1 answer
  • Help <br>I need to know what this is asap​
    14·2 answers
  • Use the drawing below to answer the questions that follow.
    6·2 answers
  • What is unit rate for graph
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!