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
Elis [28]
2 years ago
7

Will give Brainliest. This is a question on Methods for Solving Systems of Equations in Algebra 1.

Mathematics
2 answers:
Rasek [7]2 years ago
6 0
I don’t know what you mean but i’m guessing you’re saying like, ex: 4x+9=3x-3 or something. in that situation we would do something my algebra 1 teacher would call the magic tunnel. step 1: move the 3x over and flip the sign (make it -3x because we’re going across the sign!) step 2: move the +9 over to the other side and flip the sign (make it -9!) your new problem would be 4x-3x=-3-9. step 3: do the math on each side of the equal sign (4x-3x=x), (-3-9=-12) therefore you now have your answer x=-12.
Nat2105 [25]2 years ago
5 0

Answer:

If there are no variables left, then i guess u just have to write the rest down(constant, coefficient, etc...)

You might be interested in
Bob is building a wooden cabin. The cabin is 30 meters wide. He obtained a bunch of 17 meters long wooden beams for the roof of
qaws [65]
The roof will be in the shape of an isosceles triangle with a base length of 30 m and two sides that are 17 m. The two 17 m beams will have the same angle of elevation since they have to might in the middle.

So to find the angle of elevation, we can split the roof in half vertically to create a right triangle. The base will now be 15 m, and the hypotenuse will be 17. Now we can use a trigonometry function to solve for the angle. We know the hypotenuse and the side adjacent to the angle, so we can use cosine.

cos(\theta) =  \frac{adjacent}{hypotenuse}

cos(\theta)= \frac{15}{17}

cos^{-1}( \frac{15}{17})=\theta

\theta = 28.1^{\circ}

The answer  is 28.1 degrees
3 0
2 years ago
The height of a cone is two times its base diameter. What is the volume of the cone in terms of its base radius r?
nydimaria [60]

Volume of the cone = (1/3) pi r^2 h

h = 2r  so substituting for h:-

V = (1/3) pi r^2 * 2r

V = (2/3) pi r^3

5 0
3 years ago
3. In a circular park with a radius of 250 m there are 7 lamps whose bases are circles with
____ [38]

Answer:

Area of the lawn = 62493π m^2

Step-by-step explanation:

6 0
3 years ago
A plane flies 720 miles with the wind in 3 hours. The return trip against the wind takes 4 hours. What is the speed of the wind
Mandarinka [93]
Let p and w represent the speed of the plane and the speed of the wind, respectively.
.. speed = distance/time
.. p +w = 720/3 = 240
.. p -w = 720/4 = 180

Add the two equations to eliminate w.
.. 2p = 420
.. p = 210
.. w = p -180 = 30

The speed of the wind is 30 mph.
The speed of the plane in still air is 210 mph.
4 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:
  • Is a line best fit appropriate for the data? explain why or why not <br> 30 points!
    11·1 answer
  • How do u find the answer
    14·1 answer
  • If Tara spends $219 a month for her car payment and she makes $3200 a month what percent of her monthly income is spent on her c
    13·1 answer
  • PLEASE HELP ME! I WILL GIVE YOU 40 PTS.
    8·2 answers
  • Is one third greater than 3/5
    15·2 answers
  • Describe how [2^3][2^-4] can be simplified
    14·1 answer
  • What is the name of the type of data that a scatterplot is used to analyze?
    8·2 answers
  • 2x + y + 3z = 19<br> 3x + 2y + 3z = 19<br> X + 4y + 2z = 9<br> What is the value of x?
    13·2 answers
  • The midpoint of line segment AB is (1,2). if the coordinates of A are (1,0) what are the coordinates of B
    9·1 answer
  • John is ordering a pizza. He wants to choose what he gets randomly. He can get either regular crust or thin crust. Then he can c
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!