Write a linear equation that is parallel to the line 3x−2y=14 and passes through the point (−6,−11) in slope-intercept form.

Answers

Answer 1
Y=3/2x -2 is your answer

Related Questions

what is the perpendicular and parallel lines of y= -2 -4x

Answers

y=1/4x-2 is a perpendicular line and y=-4x+3 is a parallel line.

The equation y= -2 -4x in the form of slope intercept form y=mx+b is y=-4x-2.

Where m represents the slope and y intercept is -2.

The slope of a line perpendicular to another line is the negative reciprocal of the slope of the given line.

The negative reciprocal of -4 is 1/4.

Therefore, the slope of the perpendicular line is 1/4.

The perpendicular line is y=1/4x-2.

We know that the parallel lines have same slope.

y=-4x+3

Hence, y=1/4x-2 is a perpendicular line and y=-4x+3 is a parallel line.

To learn more on slope of line click:

https://brainly.com/question/16180119

#SPJ1

it takes mm to make cm

Answers

Answer:

In one in. there is 10 mm

Answer:

The answer is 10 mm

Step-by-step explanation:

it takes 10 mm to make 1 cm

 

-TheUnknownScientist 72

simplify the ratio :
35 minutes to 45 seconds ​

Answers

Answer:

7:9

Step-by-step explanation:

Just divide 35 and 45 by 5.

The price of apples can be determined by the equation P=0.23n, where P is the price and n is the number of apples. What is the constant of proportionality (unit rate)

Answers

Answer:

The constant of proportionality(Unit rate) is 0.23

Step-by-step explanation:

Given equation is:

\(P = 0.23n\)

Here

P is the price and n is the number of apples

The price is usually directly proportional to quantity so the relationship can be written as:

P ∝ n

Removing the proportionality symbol, we get

P = kn

Comparing the given equation with this equation we get

k = 0.23

Hence,

The constant of proportionality(Unit rate) is 0.23

Robert's book bag is weighing him down. His bag alone weighs 4 pounds. His library book
weighs 2 pounds. The math book is 4 times the weight of the library book, and his science
book is 2 times the weight of the math book. How much does his book bag weigh with all
these books? What is the heaviest book in his book bag?

Answers

The weight of Robert's bag alone is 4 pounds.

The library book weighs 2 pounds.

The math book is 4 times the weight of the library book, so it weighs 4 * 2 = 8 pounds.

The science book is 2 times the weight of the math book, so it weighs 2 * 8 = 16 pounds.

To find the total weight of Robert's book bag, we add the weights of all the books and the bag:

4 pounds (bag) + 2 pounds (library book) + 8 pounds (math book) + 16 pounds (science book) = 30 pounds.

Therefore, Robert's book bag weighs 30 pounds with all these books.

To determine the heaviest book in his book bag, we compare the weights of the books:

The bag weighs 4 pounds.
The library book weighs 2 pounds.
The math book weighs 8 pounds.
The science book weighs 16 pounds.
From these options, the science book is the heaviest, weighing 16 pounds.

Answer:

1) 30 pounds is the weight of the bag all together

2) science book is the heaviest book

Step-by-step explanation:

bag=4 pounds

library book=2 pounds

maths book=2×4=8 pounds

science book=8×2=16 pounds

4+2+8+16=30 pounds all together

heaviest book= science book (16 pounds)

You have a piggy bank containing a total of 66 coins in dimes and quarters. If the piggy bank contains $10.20, how many dimes are there in the piggy bank?

Answers

I have 42 dimes in my piggy bank according to the given condition of 66 coins and amount $10.20 and used the system of equation as well as substitution method.

What is system of equation?

A finite set of equations for which common solutions are sought is referred to in mathematics as a set of simultaneous equations, also known as a system of equations or an equation system. A group of two or more equations that share the same variables is known as a system of equations. A set of values for a variable that simultaneously satisfy each equation is the solution to a system of equations.

What is substitution method?

Finding the value of any variable from one equation in terms of another variable is the first step in the substitution method. For instance, if there are two equations, x+y=7 and x-y=8, we can deduce that x=7-y from the first equation. Applying the substitution method begins with this.

Here,

x+y=66    ......(1)

1 dime values 10 cents.

1 quarter values 25 cents.

10x+25y=1020       ........(2)

x=66-y

10(66-y)+25y=1020

660-10y+25y=1020

15y=360

y=360/15

y=24

x=66-24

x=42

I used the system of equations and the substitution method to determine that I have 42 dime coins in my piggy bank in accordance with the requirement of 66 coins totaling $10.20.

To know more about system of equation,

https://brainly.com/question/28954223

#SPJ13

Mr. Haynes wants to expand his rectangular living room to make room for an indoor theater system. He asks the contractor to make the width of the room 5 feet longer and he wants the length of the room to be 5 feet longer than twice the width. When finished the new room will have a perimeter of 140ft around. The new dimensions of the room will be

Answers

Step-by-step explanation:

check the image for detailed solution

Mr. Haynes wants to expand his rectangular living room to make room for an indoor theater system. He

Cooper went shopping for a new camera because of a sale. The store was offering a 25% discount. What number should he multiply the prices on the tags by to find the price he would have to pay, before tax, in one step?

Answers

well, let's say the regular price is "x", which oddly enough is the 100%, and we know the store is doing a 25% sale, that means the new prices are 100% - 25% = 75%, 75% of the regular price, so when buying item for "$x", the sale price will just be

\(\begin{array}{|c|ll} \cline{1-1} \textit{\textit{\LARGE a}\% of \textit{\LARGE b}}\\ \cline{1-1} \\ \left( \cfrac{\textit{\LARGE a}}{100} \right)\cdot \textit{\LARGE b} \\\\ \cline{1-1} \end{array}~\hspace{5em}\stackrel{\textit{75\% of x}}{\left( \cfrac{75}{100} \right)x}\implies \text{\LARGE 0.75}\cdot x\)

Given a number n, for each integer i in the range from 1 to n inclusive, print one value per line as follows: • If iis a multiple of both 3 and 5, print FizzBuzz. • If iis a multiple of 3 (but not 5), print Fizz. • If iis a multiple of 5(but not 3), print Buzz. • If i is not a multiple of 3 or 5, print the value ofi. Function Description Complete the function fizzBuzz in the editor below. fizzBuzz has the following parameter(s): int n: upper limit of values to test (inclusive) Returns: NONE Prints: The function must print the appropriate response for each value i in the set {1, 2, ... n}in ascending order, each on a separate line. Constraints • 0

Answers

The program is an illustration of loops and conditional statements and the part of the complete program is

n = int(input())

for i in range(1,n+1):

  if not(i%3 == 0 or i%5==0):

How to determine the program using the conditions?

The program written in Python where comments are used to explain each line is as follows:

#This gets input for n

n = int(input())

#This iterates through n

for i in range(1,n+1):

  #If the current number is not a multiple of 3 and 5

  if not(i%3 == 0 or i%5==0):

      #This prints the number

      print(i,end="")

  else:

      #This prints "Fizz", if the current number is a multiple of 3

      if i%3 == 0:

          print("Fizz",end="")

      #This prints "Buzz", if the current number is a multiple of 5

      if i%5==0:

          print("Buzz",end="")

  #This prints a new line

  print()

Read more about loops and conditional statements at:

brainly.com/question/26098908

#SPJ1

Which expression is equivalent to the given expression? 4lh x + lh 3 - lh x

Answers

OH MY GOD BABY JUST LIKE THAT AHHH YESS

4n-2n m4 I need help with this

Answers

The correct answer is 2n+m4. Hope this helps!! Please mark as brainliest!!

Which of the following is an irrational number? 9.4 (A. B. V82 OC C. V144 D. 7 9

Answers

Do you have a picture of your problem?

What is 6721 x 381 divided by 14 + 84

Answers

To solve the expression, we need to follow the order of operations, also known as PEMDAS (Parentheses, Exponents, Multiplication and Division, Addition and Subtraction).

Let's break down the expression step by step:

1. Multiply: 6721 x 381 = 2,561,901.
2. Divide: 2,561,901 divided by 14 = 182,993.64 (rounded to two decimal places).
3. Add: 182,993.64 + 84 = 183,077.64 (rounded to two decimal places).

Therefore, the result of the expression 6721 x 381 divided by 14 + 84 is approximately 183,077.64.

Answer: 26129.6

Step-by-step explanation:

6721 x 381 = 2560701

14 + 84 = 98

2560701  / 98 = 26129.6

Write the next three terms of the arithmetic sequence. 13 - 8 – 3 ,2 _,_,_

Answers

Given

Write the next three terms of the arithmetic sequence. -13, -8, -3, 2, _, _, _

Procedure

-13+5=-8

-8+5=-3

-3+5=2

2+5=7

7+5=12

12+5=17

The sequence is -13, -8, -3, 2, 7, 12, 17

Determine the equation of the circle graphed below.

Determine the equation of the circle graphed below.

Answers

Answer:

\((x - 6)^2 + (y - 2)^2 = 4\)

Step-by-step explanation:

Required

The equation of the circle

The equation of a circle is:

\((x - h)^2 + (y - k)^2 = r^2\)

Where:

\(Center = (h,k)\)

\(radius \to r\)

From the graph, we have

\((h,k) = (6,2)\)

\(r = 2\)

So:

\((x - h)^2 + (y - k)^2 = r^2\) becomes

\((x - 6)^2 + (y - 2)^2 = 2^2\)

\((x - 6)^2 + (y - 2)^2 = 4\)

Find the range and mean of 1,3,5,7,9​

Answers

Range is 8, mean is 5.

Answer:

Step-by-step explanation:

Range: what the numbers range from the smallest to largest.   Subtract the largest number and smallest.

Range =  9 - 1

Range = 8

Median:  Middle number.  If you listed numbers in order from smallest to largest, it is the middle number

Median = 5

Convert 12/5 into a mixed number.​

Answers

Answer:

2 2/5

Step-by-step explanation:

Follow these steps to get a mixed number:

Divide 12 by 5. The quotient is 2 and the remainder is 2. The divisor remains 5. 12/5 in mixed fraction is 2 2/5

Hence, 12/5 can be written as a mixed number 2 2/5.

need help with this question please and thanks 100 points

need help with this question please and thanks 100 points

Answers

I got you it is negative 4 and 2/3
Your answer is -4 2/3

- you have to do -42 divided by 9 and you get without going over -42. The closest you can get is -36. Now, with the remaining 6 would just be written bearing -4 as 6/9. Here, you have to simplify it, making it 2/3. Your answer is the -4 2/3

A curve, described by x2 + y2 + 6y = 0, has a point A at (−3, −3) on the curve.

Part A: What are the polar coordinates of A? Give an exact answer.

Part B: What is the polar form of the equation? What type of polar curve is this?

Part C: What is the directed distance when theta equals 4 pi over 3 question mark Give an exact answer.

Answers

a) The polar coordinates of point A are (√(18), π/4).

b) The curve is a circle centered at the origin with radius 6.

c) The directed distance is the value of r, which is 6 √(3).

To find the polar coordinates of point A on the curve, we need to convert the point from Cartesian to polar coordinates. The conversion formula is:

r = √(x² + y²)

θ = arctan(y/x)

Using the values of point A, we have:

r = √((-3)² + (-3)²) = √(18)

θ = arctan((-3)/(-3)) = arctan(1) = π/4

To find the polar form of the equation x² + y² + 6y = 0, we need to convert it from Cartesian to polar coordinates. The conversion formulae are:

x = r cos(θ)

y = r sin(θ)

Using these formulae, we can rewrite the equation as:

r² cos²(θ) + r² sin²(θ) + 6r sin(θ) = 0

Simplifying this equation, we get:

r = -6 sin(θ) / (1 - cos²(θ))

To find the directed distance when θ equals 4 π over 3, we need to substitute this value of θ into the polar equation we found in Part B. Doing so, we get:

r = -6 sin(4 π/3) / (1 - cos²(4 π/3))

r = -6(-√(3)/2) / (1 - (-1/2)²)

r = 6 √(3)

To know more about polar coordinates here

https://brainly.com/question/31422978

#SPJ1

HELP NOWWWWW PLEASEEEEE
How many 1/3's are in 1 and 2/3?

Answers

Answer:

5 thirds

Step-by-step explanation:

Make 1 2/3 into a improper fraction. Now you have 5/3. 5/3-(1/3*5)=0

Therefore, 5x1/3=5/3=1 2/3

Answer:

This guy is wrong. 1 2/3 is equal to 5/3. But that is not the answer(like that dummy above said)

The Question is asking "How many 1/3's are in 1 2/3" (5/3)

The answer is 5, not 5/3's.

A Diamond ring that normally sells for $1275 is on sale for $1020. A ruby ring that sells for $290 is on sale for $203. What is the percent markdown for the diamond rind and what is the percent markdown for the ruby ring?

Answers

Answer:

20%, 30%

Step-by-step explanation:

A diamond ring that normally sells for $1275 is now being sold at $1020

The percent mark down of the diamond ring can be calculated as follows

= 1275-1020

= 255

= 255/1275 ×100

= 0.2 ×100

= 20%

A ruby ring that sells for $290 is now being sold at $203

= 290-203

= 87

= 87/290 ×100

= 0.3×100

= 30%

Hence the percent mark down for the diamond ring and ruby ring is 20% and 30% respectively

if cos theta < 0 and cot theta > 0, then the terminal point determined by theta is in:

A. Quadrant 1
B. Quadrant 3
C. Quadrant 4
D. Quadrant 2

please help me ! ​

Answers

Answer:

If cosine theta < 0 and cotangent theta > 0, then the terminal point determined by theta is in: quadrant 3.

Step-by-step explanation:

hope this helps you :) my answer is the Step-by-step explanation: and the answer :)

Considering the signals of the sine and the cosine of the trigonometric function, it is found that it's quadrant is given by:

B. Quadrant 3

What are the signals of the sine and the cosine in each quadrant?

Q1: cos > 0, sin > 0.Q2: cos < 0, sin > 0.Q3: cos < 0, sin <0.Q4: cos > 0, sin < 0.

In this problem, we have that the cosine is negative, and the cotangent is positive. Cotangent is cosine divided by sine, hence if it is positive, both cosine and sine have the same signal, since cos < 0, sine is negative, they are in third quadrant and option B is correct.

More can be learned about the quadrants of trigonometric functions at https://brainly.com/question/24551149

#SPJ2

Find the length of a segment in the coordinate plane with endpoints (-4,-5) and (8, 1).

Answers

Answer:

Step-by-step explanation:

d = 13.416408

For:

(X1, Y1) = (-4, -5)

(X2, Y2) = (8, 1)

Answer:

L = 9.49 units

Step-by-step explanation:

From the 1st point to the 2nd, x changes by 12; from the 1st to the 2nd, y changes (increases) by 6.  These results (12 and 6) represent the leg length of a right triangle whose diagonal length we wish to calculate using the Pythagorean Theorem:

12^2 = 144 and 6^2 = 36.

Combining these results in the length of the diagonal:

L = √(144 + 36) = √180 = 13.42 units using the Pythagorean Theorem

Rounding off, we get L = 9.49 units

Write a sine function with an amplitude of 5, a period of
Pi/8,and a midline at y = 7.

f(x) = 4sin(8x) + 5
f(x) = 5sin(16)+7
f(x) = 5sin(16x) + 4
f(x) = 4sin(8x) + 7

Answers

Answer:

\(\textsf{B)} \quad f(x) = 5 \sin (16x) + 7}\)

Step-by-step explanation:

The sine function is periodic, meaning it repeats forever.

Standard form of a sine function

\(\boxed{f(x) = A \sin (B(x + C)) + D}\)

where:

A is the amplitude (height from the midline to the peak).2π/B is the period (horizontal distance between consecutive peaks).C is the phase shift (horizontal shift - positive is to the left).D is the vertical shift (y = D is the midline).

Given values:

Amplitude, A = 5Period, 2π/B = π/8Phase shift, C = 0Vertical shift, D = 7

Calculate the value of B:

\(\dfrac{2\pi}{B}=\dfrac{\pi}{8}\implies 16\pi=B\pi\implies B=16\)

Substitute the values of A, B C and D into the standard formula:

\(f(x) = 5 \sin (16(x + 0)) + 7\)

\(f(x) = 5 \sin (16x) + 7\)

Therefore, the sine function with an amplitude of 5, a period of π/8, and a midline at y = 7 is:

\(\Large\boxed{\boxed{f(x) = 5 \sin (16x) + 7}}\)

Write a sine function with an amplitude of 5, a period ofPi/8,and a midline at y = 7.f(x) = 4sin(8x)

What type of association does the graph show?
A. positive nonlinear
B. positive linear
C. negative nonlinear
D. negative linear

What type of association does the graph show?A. positive nonlinearB. positive linearC. negative nonlinearD.

Answers

Answer:

B. Positive linear

Step-by-step explanation:

First, this graph is a linear graph because a linear graph is a straight line. The graph in the diagram is also a straight line, so it is linear.
Also, notice how as x increases, y increases. This means that the graph is positive

B. Positive linear association

help fast What is the area of a rectangle with a length of 14.4 inches and a width that is one-third of the length?

43.2 in.2
51.84 in.2
69.12 in.2
103.68 in.2

Answers

Answer:

69.12 in.2

Step-by-step Explanation:

1/3 of 14.4 is the same as dividing 14.4 by 3

14.4÷3=4.8

To find the area, multiply the two.

So, 14.4×4.8=69.12

How much has James earned since the beginning of the year in 2014? (use pay stub) *
1 point
$1,451.28
$3548.72
$5,000

Answers

Can you give more information?


A company recently downsized its number of employees by 30%. If there are still 84 employees, how many employees were there prior to the layoffs?

Answers

Answer:

There were 120 employees prior to the layoffs.

Step-by-step explanation:

x is original amount of employees

0.7x=84

divide by 0.7 both sides

x=120 employees

downsize 30% is 36, 120-36=84

Help me pls what is 10,000 is 1/10 of

Answers

Answer:

1000

Step-by-step explanation:

-12.405 as a mixed number in simplest form please

Answers

\(\\ \ast\sf\longmapsto -12.405\)

\(\\ \ast\sf\longmapsto -\dfrac{12405}{1000}\)

Simplify until possible

\(\\ \ast\sf\longmapsto -\dfrac{2481}{200}\)

Now

\(\\ \ast\sf\longmapsto -12\dfrac{81}{200}\)

Other Questions
Help me solve this what is 3 divided by 4.236 [Honors] Two charged objects with an equal charge of Q separated by a distance r attract each other with a certain force. If the charges on both objects are doubled and the separation is halved, the force between them?(A) 4 times greater (B) 2 times greater (C) 4 times less(D) 16 times greater Write expression that is equivalent to 1/4 a -3 i was _____ surprised that my contract was renewedfill in the blank Abigail rises, staring as though inspired, and cries out. ABIGAIL: I want to open myself! They turn to her, startled. She is enraptured, as though in a pearly light. I want the light of God, I want the sweet love of Jesus! I danced for the Devil; I saw him; I wrote in his book; I go back to Jesus; I kiss His hand. I saw Sarah Good with the Devil! I saw Goody Osburn with the Devil! I saw Bridget Bishop with the Devil! As she is speaking, Betty is rising from the bed, a fever in her eyes, and picks up the chant- the chant is echoed in the distant music of the dance in the forest - there is wind in the trees. BETTY, staring too. I saw George Jacobs with the Devil! I saw Goody Howe with the Devil! PARRIS: She speaks! He rushes to embrace Betty. She speaks! What happened as a result of this interaction from The Crucible? Select all that apply. Salem fell into mass hysteria. Elizabeth ruined Abigail's reputation by accusing her of adultery. Parris believed his daughter to be possessed by the devil. Abigail gained power by accusing others of witchcraft. Which equals (20-3) (20+3) Which plant process is illustrated above?transpirationrespirationphotosynthesisgermination EASY CHEM! PLEASE HELP! CHOOSE THE RIGHT ANSWER. WILL MARK BRAINLIEST FOR THE BEST ANSWER. THANK YOU AND GOD BLESS. PLEASE ANSWER IF YOU KNOW. EXPLAIN WHY ITS THAT SPECIFIC ANSWER.The number of solutions of a system represented by a horizontal line and a vertical line is:A) InfiniteB) 2C) 1D)0THANKS AGAIN =) the center of mass of an object is group of answer choices a location on the object. a location which may or may not be located on the object. not a location, but a measure of how hard it is to rotate an object. 1. for a fixed confidence level, when the sample size decreases, the length of the confidence interval for a population mean decreases. True or false? Ok I need some help here lol This is the only one and its honestly confusing What technique does Rainsford use during the first night of the hunt? What does he do toelude Zaroff? You have taken four test and earned a 60, 95, 80, and 75. you want to keep your overall average at 80. Write and solve the equation you would use to find what you need to score on your fifth test to keep this average. A company that manufactures and ships widgets has two different sizes for boxes. One size box has a volumemodeled by the function f(x) = 23 500x + 3000. The other size box has a volume modeled by the functiong(x) = 4.33 2022 240s. Write a simplified polynomial expression with terms in descending order that models thecombined volume for one small box and one large box. Which propaganda technique promotes the idea that a belief or course of action is popular?O bandwagonO name-callingO repetitionscapegoating Compared to a few decades ago, personality psychologists today are much more likely to acknowledge the importance of biological influences on personality. This shift is partly due to:___.a. the overwhelming influence of the trait model in personality psychology. b. the increase in researchers with MD's getting into the field of personality research.c. the increasing use of twin studies in all personality research improvements.d. in research instruments that allow researchers to assess personality and biology more accurately. If =113DB=113, =95BC=95, =110DC=110, =19EF=19, and =22GF=22, find the perimeter of EFG. Round your answer to the nearest tenth if necessary. Figures are not necessarily drawn to scale. help in critical value Perform the indicated goodness-of-fit test. Make sure to include the null hypothesis the alternative hypothesis, the appropriate test statistic,and a conclusion. In studying the responses to a multiple-choice test question, the following sample data were obtained.At the 0.05 significance level.test the claim that the responses occur with the same frequency Response B CD H Frequency 1215161819 Make sure to answer all parts. Null hypothesis The proportions of responses Alternative hypothesis H. Test-statistic 1.875 2 Critical-value [Select] X2 [Select reject 10.117 ypothesis We 8.231 9.488 sufficient evidence to warrant rejection of There the claim that responses occur with the same frequency. One way in which the Declaration of Independence and the original United StatesConstitution are similar is that both promote the idea ofO equal rights for womenO voting rights for adult citizensO the consent of the governedO judicial review of unjust laws