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
Vladimir [108]
3 years ago
12

Shirt cost $20 each and ties cost $12 each. Write an expression for the cost of s shirts and t ties

Mathematics
2 answers:
gtnhenbr [62]3 years ago
8 0

Answer:

The cost of "s" shirts and "t" ties = $20s + $12t

Step-by-step explanation:

Given:

Shirt cost = $20 each

Ties cost = $12 each.

The number of shirts represented by "s" and the number of ties represented by "t"

Cost = $20*the number of shirts + $12*the number of ties

so, the cost of "s" shirts and "t" ties = 20s + 12t

Example:

If we want to find the cost 2 shirts and 3 ties, we need to plug s = 2 and t= 2 in the above expression.

The cost of 2 shirts and 3 ties = 20*2 + 12*3

= 40 + 36

= $76

The cost of 2 shirts and 3 ties is $76.

Ierofanga [76]3 years ago
6 0
20s+12t= is your expression.
You might be interested in
Juanita is measuring a table for her dining room. Table area is 46 7/8 square feet. Table length is 7 1/2 feet. She does not wan
Anastaziya [24]
No. If you still want the  46 7/8 square foot table and less than 6ft wide than the table length must be greater than 7 1/2 feet long. For the math to work out. Because, the 7 1/2 foot long table would need a 6 1/4 wide table to fit the 46 7/8 square foot.
5 0
3 years ago
4x+2(3x-9)=42 what is x equal
katrin2010 [14]
<span>4x+2(3x-9)=42
first we want to distribute the 2 using the distributive property
4x+6x-18=42
Then we simplify
</span><span>10x-18=42
we add 18 to both sides
10x=60
divide both side by 10
x=6</span>
8 0
2 years ago
At the grocery store, you buy a carton of milk for $1.95, a loaf of bread for $0.85, and a box of cereal for $2.05. Use mental m
Ganezh [65]
It is $4.85 add all groceries
3 0
3 years ago
Read 2 more answers
8.4 gallons of gas for $23.94. Which equation can be used to determine the price of each gallon of gas?
mojhsa [17]
Here is the equation: (gas=g)

8.5g= 23.94

All you need to do is the inverse of multiplication on the other side. (division)

23.94/8.5= 2.81647.....

g= 2.82 (rounded to the hundredths place)

I hope this helps!
~kaikers
6 0
3 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
Other questions:
  • What is the midpoint of the segment shown below?<br> Help me plz
    8·1 answer
  • What is the circumference of a circle that has a radius of 7 m?
    11·1 answer
  • What are the solution of the equation x^2- 4x -32 = 0 ?show your work and justify each step.
    6·1 answer
  • Mary sells fruit with four of her friends. If the earnings are divided evenly, how
    9·1 answer
  • What is 17 over 21 in simplest form plz answer i need help
    10·2 answers
  • Divide each polynomials by the monomials. Choose all that are correct. (9xy2 + 12x3y4 − 6x) ÷ 3x = 4x2y4 + 3y2 − 2 (25x4y2 + 10x
    9·1 answer
  • Casey is making a balloon arrangement of latex balloons and mylar balloons. Each latex balloon costs $0.25 and each mylar balloo
    13·1 answer
  • Triangle RST is drawn inside rectangle RSNM. Point T is halfway between points M and N on the rectangle. The length of side RS i
    8·1 answer
  • Cos 55°<br> 0.9735<br> True or false
    15·1 answer
  • Find the midpoint of the segment with the end points(1 , 7) and (9, 0)
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!