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
sasho [114]
3 years ago
9

When 2 less than 3 lots of a number is doubled the result is 5

Mathematics
2 answers:
Vitek1552 [10]3 years ago
4 0
Can you rephrase it? (maybe write it out in numbers?)
Misha Larkins [42]3 years ago
4 0
Let the number be n

the first half (2 less than 3 lots of a number) is in brackets.
3 lots of a number is 3 x the number and 2 less than it is subtracting 2 from the product.
So 3n-2.
That whole number is doubled so the 2 is left outside the brackets so that it applies to everything inside.
2(3n-2) = 5

im not sure if you were asked to find the number but if you are then you must work in opposite operations.

First, divide both sides by 2--
3n-2 = 2.5
then add the 2 to both sides
3n = 4.5
divide both by 3 and tha'ts the answer for n but its a decimal so i doubt its asking for that

You might be interested in
find three consecutive numbers such that three times the first number is equal to 9 more than the sum of the other two.
Goryan [66]

Answer:

12, 13, 14

Step-by-step explanation:

Three consecutive numbers means three numbers in a row, so if n is the first number, the second number is one more than  n (which is n+1) and the third number is one more than that (which is n+2)

So three times (3 x) the first number (n) is equal to (=) nine more than (9 +) the sum of the other two ( (n+1) + (n+2) )

3 times n can be written as 3n

So 3n = 9 + (n+1) + (n+2)

3n = 9 + n + 1 + n + 2

3n = 9 + 1 + 2 + n + n

3n = 12 + 2n

Subtract 2n from each side

3n - 2n = 12 + 2n - 2n

1n = 12

n = 12

So the first number is 12, the second number is 12 + 1 (13) and the third number is 12 + 2 (14)

The numbers are 12, 13, 14

Hope this helps :)

6 0
3 years ago
How much is 74 divided by 4
exis [7]

Answer:

18.5

Step-by-step explanation:

6 0
2 years ago
Read 2 more answers
This is a continuous set of points in the coordinate plane. It can be, but is not always, straight.
castortr0y [4]

Answer:

Linear. While all linear equations produce straight lines when graphed, not all linear equations produce linear functions. In order to be a linear function, a graph must be both linear (a straight line) and a function (matching each x-value to only one y-value).

5 0
2 years ago
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
Gavin drove 85 miles on 10 gallons of gas.How many miles can gavin drive on 25 gallons of gas?
bixtya [17]

Answer:

212.5 miles on 25 gallons.

Step-by-step explanation:

Set up a proportion

85 miles on 10 gallons

x miles on 25 gallons.

85/10 = x / 25                   Multiply both sides by 25

85*25 / 10 = x                   Simplify the left

2125 / 10 = x

x = 212.5 miles in 25 gallons.

6 0
3 years ago
Other questions:
  • Complete the statement. Round to the nearest hundredth, if necessary.
    9·2 answers
  • Evaluate the surface integral. (give your answer correct to at least three decimal places.) s is the boundary of the region encl
    6·1 answer
  • What is the simplified form of the expression?
    13·2 answers
  • [HELP PLEASE] 12, 13, 14<br><br>the last answer on 14 is log2 z over 11
    13·1 answer
  • What is the value of 6x2−4x when x = 5?
    8·2 answers
  • What is 6184 divided by 3
    10·2 answers
  • Please answer quickly thanks :)))
    13·1 answer
  • Can anyone help me with this? Will give brainliest
    6·2 answers
  • Subtract w from u, then subtract v from the result
    12·1 answer
  • J/4 - 1 = 1.7 solve for j ​
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!