Pls help, A, B or C?

Pls Help, A, B Or C?

Answers

Answer 1

There is no error. This is a correct conclusion, option C is correct.

Vinay correctly concluded that Segment AB and CD have no angles with the same measurements, which means they are not congruent.

If two line segments coincide or overlap, it means they occupy the same space and have the same length.

However, congruence refers to the overall similarity and equality of all corresponding parts of two geometric figures.

Since the angles in the coinciding segments are not equal, they cannot be considered congruent.

To learn more on Congruence click:

https://brainly.com/question/31992651

#SPJ1


Related Questions

solve 2x-y > 1 for y

Answers

Answer:

y<2x−1

Step-by-step explanation:

1 Subtract 2x2x from both sides.

-y>1-2x−y>1−2x

2 Multiply both sides by -1−1.

y<-1+2xy<−1+2x

3 Regroup terms.

y<2x-1y<2x−1

Can someone please help me I will be forever grateful

Can someone please help me I will be forever grateful

Answers

Answer:

5/8

Step-by-step explanation:

1 inches in fraction form would be 8/8 inches, and the button is 3/8 inches, so a 1 inch button is 5/8 inches longer than a 3/8 inch button

Answer:

5/8

Step-by-step explanation:

it takes 5 more inches to get to 1 inch from 3/8

Hope I helped!! If I did please give brainliest because I cant level up without having 2 more ;(

<3 Enjoy,

    Dea

EASY question for y’all mathy people! Easy points, i’m just not a mathy person. question in photo.

EASY question for yall mathy people! Easy points, im just not a mathy person. question in photo.

Answers

Answer:

C

Step-by-step explanation:

This is a function because it is a standard quadratic equation, meaning it is a parabola that opens up so it passes the vertical line test.

Answer:

C

Step-by-step explanation:

It is a quadratic equation. This means it is a parabola that opens up so it does pass the vertical line quiz.

(-14) + (-7) = ?*
Your answer

Answers

Answer:

-21

Step-by-step explanation:

Answer:
-21

Explanation
Um justtttt um it’s the answer

1. Differentiate the function f(x) = ln (81 sin^2 (x)) f’(x) 2. Differentiate the function P(t) = in ( √t2 + 9) p' (t) 3. if x2 + y2 + z2 = 9, dx/dt = B, and dy/dt = 4, find dz/dt when (x,y,z) = (2,2,1)
dz/dt =

Answers

First you will get 4dz

please help due today!!!!!

please help due today!!!!!

Answers

i think it would be 2. because if you do 2 plus 1 plus 2 plus 1 plus 2 it makes 8. and the other side equals eight because if you count all the ones together you get eight and they would be equal so your answer is 2!! please give me brainliest!!

The answer will be 2.

If you add 2+2+2 it will equal 6 + the 2 on the scale will be 8 that makes it equal to the other scale

Penny had a bag of marbles. She gave one-third of them to Rebecca, and then one-fourth of
the remaining marbles to John. Penny then had 24 marbles left in the bag. How many marbles were
in the bag to start with?
pls explain.

Answers

Given That:

x - (Rebecca's share + John's share) = 24

x - (x/3 + x/4) = 24

12x/12 - (4x / 12 + 3x / 12) = 24

5x/12 = 24

5x = 24 x 12

5x = 288

x = 57 or 58

Simplify to a single power of 6 6(5)^4

Simplify to a single power of 6 6(5)^4

Answers

Answer:

9th power

Steps:

(6^5)^4

(6^5+4)

6^9

Find the length of the missing side. Sorry, I’m just really bad with algebra!

Find the length of the missing side. Sorry, Im just really bad with algebra!

Answers

217 will be the answer

HELPPPPPPPPPPPPPPPPPPPPPP The graph shows the number of students who earned a score in math. The BEST estimate of the range is

HELPPPPPPPPPPPPPPPPPPPPPP The graph shows the number of students who earned a score in math. The BEST

Answers

Answer:

A is correct

this answer in your graph

the answer is B because it starts at 0 and ends at 24

range refers to the y value, while domain is the x value

Need asap please
Which is the slope-intercept equation of the line shown?

Need asap pleaseWhich is the slope-intercept equation of the line shown?

Answers

Answer: 15 feet

Step-by-step explanation: i said 15 feet so it's probably 15 feet

Question 1 (2 x 12 = 24 marks) Analyze and discuss the performance (in Big-O notation) of implementing the following methods over Singly Linked List and Doubly Linked List Data structures: To be submitted through Turnitin.Maximum allowed similaritv is 15% Operation Singly Linked List Doubly Linked List add to start of list Big-O notation Explanation add to end of list Big-O notation Explanation add at given index Big-O notation Explanation

Answers

In analyzing the performance of implementing the given methods over Singly Linked List and Doubly Linked List data structures, we consider the Big-O notation, which provides insight into the time complexity of these operations as the size of the list increases.

Add to Start of List:

Singly Linked List: O(1)

Doubly Linked List: O(1)

Both Singly Linked List and Doubly Linked List offer constant time complexity, O(1), for adding an element to the start of the list.

This is because the operation only involves updating the head pointer (for the Singly Linked List) or the head and previous pointers (for the Doubly Linked List). It does not require traversing the entire list, regardless of its size.

Add to End of List:

Singly Linked List: O(n)

Doubly Linked List: O(1)

Adding an element to the end of a Singly Linked List has a time complexity of O(n), where n is the number of elements in the list. This is because we need to traverse the entire list to reach the end before adding the new element.

In contrast, a Doubly Linked List offers a constant time complexity of O(1) for adding an element to the end.

This is possible because the list maintains a reference to both the tail and the previous node, allowing efficient insertion.

Add at Given Index:

Singly Linked List: O(n)

Doubly Linked List: O(n)

Adding an element at a given index in both Singly Linked List and Doubly Linked List has a time complexity of O(n), where n is the number of elements in the list.

This is because, in both cases, we need to traverse the list to the desired index, which takes linear time.

Additionally, for a Doubly Linked List, we need to update the previous and next pointers of the surrounding nodes to accommodate the new element.

In summary, Singly Linked List has a constant time complexity of O(1) for adding to the start and a linear time complexity of O(n) for adding to the end or at a given index.

On the other hand, Doubly Linked List offers constant time complexity of O(1) for adding to both the start and the end, but still requires linear time complexity of O(n) for adding at a given index due to the need for traversal.

To learn more about Big-O notation visit:

brainly.com/question/30452896

#SPJ11

If g(x)= 2x +8x-1 what is g(-3)

A) -7
B) 11
C) 28
D)7

Answers

Answer =-31

Step-by-step explanation:

Greetings !

Firstly, write down the given expression

\(g(x) = 2x + 8x - 1\)

simplify it to be more accurate where 2+8=10

\(g(x) = 10x - 1\)

plug in -3 in the value of x and simplify the expression

\(g( -3 ) = 10( - 3) - 1 \\ g( - 3) = - 30 - 1\)

Thus, subtract the numbers

\(g( - 3) = - 31\)

Hope it helps!

hanson is at a ball game with his family. he goes to the concession stand to buy soft pretzels and water bottles for everyone. a water bottle costs $2, and a pretzel costs $3.50. hanson buys 16 items and spends $47 in all. this system of equations can be used to represent the situation: x+y=16 2x+3.5y=47
\(x+y=16 2x+3.5y=47\)

Answers

The system of equation that can be used to represent the situation is as follows:

x + y = 162x + 3.5y = 47

The number of water bottle bought = 6

The number of pretzel bought = 10

Let

x = number of water bottle bought

y = number of pretzel bought

Hanson buys 16 items. Therefore,

x + y = 16

Hanson spends a total of $47. Therefore,

2x + 3.5y = 47

Combined System of equation:x + y = 162x + 3.5y = 47

Therefore, let multiply equation(i) by 2

2x + 2y = 32

2x + 3.5y = 47

1.5y = 15

y = 15 / 1.5

y = 10

x + 10 = 16

x = 6

learn more on system of equation: https://brainly.com/question/20313322?referrer=searchResults

A new string is chosen and knotted with all the other strings to create a second row. This process is repeated until there are enough rows to make a bracelet to fit around your friend's wrist. Are the number of knots proportional to the number of rows? Explain your reasoning.

Answers

Answer:

Yes, the number of knots is proportional to the number of rows.

Step-by-step explanation:

The number of knots is proportional to the number of rows, because whenever there is a new row then it implies that there is new knot.

Meaning, as the number of rows increases, the number or knots increases. This is a proportional relationship.

What is the correct order of steps to solve 8 2(-x-5)=26?

Answers

Answer:

82(-x-5)=26

-82x-410=26

-410-26=82x

-436/82=x

x=-218/41

Name the quadrant or axis where the point (4.-6) is located.​

Answers

Answer:

Step-by-step explanation:

(4, -6) is in quadrant IV , (quadrant 4)

Name the quadrant or axis where the point (4.-6) is located.

To get the graph of y = (x - b)² + a, we should move the graph of y = x² in what ways? down a units left b units up b units right b units left a units down b units right a units up a units

Answers

To obtain the graph of y = (x - b)² + a from the graph of y = x², we need to make specific transformations. We should shift the graph down by a units, move it right by b units, and shift it up by a units.

To understand how to obtain the graph of y = (x - b)² + a, let's analyze the given equation. The expression (x - b) represents a horizontal shift of the graph of y = x². When we subtract b from x, the effect is a shift to the right by b units.

Next, the squared term (x - b)² indicates that the graph will be compressed or stretched horizontally compared to the graph of y = x². However, since the coefficient of the squared term is 1, there is no horizontal compression or stretching in this case.

Moving on, adding a to the expression (x - b)² shifts the graph vertically. If a is positive, the graph moves upward by a units. Conversely, if a is negative, the graph shifts downward by a units.

To summarize, the transformations needed to obtain the graph of y = (x - b)² + a from the graph of y = x² are shifting it down by a units, moving it right by b units, and shifting it up by a units.

To learn more about transformations click here: brainly.com/question/11709244

#SPJ11

Find the equation of the exponential function represented by the table below:
X
0
1
2
3
Y
4
16
64
256
Y= ?

Find the equation of the exponential function represented by the table below:X0123Y41664256Y= ?

Answers

Answer:

y = \(4^{x+1\)

A bird feeder is in the shape of a cylinder. It has a volume of about 100 cubic inches. It has a radius of 2 inches. What is the approximate height of the bird feeder? Use 314 for pi.

Answers

Answer:

8 in approx

Step-by-step explanation:

Given data

volume = 100 cubic inches

radius= 2 inches

The expression for the volume of a cylinder is given as

v=πr^2h

substitute

100= 3.14*2^2h

100= 12.56h

h= 100/12.56

h=7.9 in

Hence the height is 8in approx

area of number sense relates to the quantity of ingredients in recipes?

Answers

Measurement is the area of the number sense that has a relationship with the quantity of ingredients used in recipes.

How do you determine the measurements of recipes?

The measures of recipes are determined by:

Weighing themCalculating their amount in volume etc.

So measure recipes, one can either measure them using artefacts such as cups, spoons, or other kind of containers.

Learn more about measurement at:
https://brainly.com/question/27233632
#SPJ1

\(2 \frac{3}{4} 7 + 7\frac{5}{8}\)

Answers

Answer:

26.875

Step-by-step explanation:

\(2 \times \frac{3}{4} \times 7 + 7 \times \frac{5}{8 } \\ \frac{4 \times 2 + 3 \times 7}{4} + \frac{8 \times 7 + 5}{8} \\ \frac{77}{4} + \frac{61}{8} \\ \frac{77 \times 2}{4 \times 2} + \frac{61}{8} \\ \frac{154}{8} + \frac{61}{8} \\ \frac{215}{8} or \: 26.875\)

which of the following is quotient obtained on dividing (x²-b) (x-a) by - (x-a)

Answers

Answer:

Step-by-step explanation:

x²-b

A primary school enrolls 50 kindergarteners every year. Next year, they are moving to a smaller building and will only be able to enroll 42 kindergarteners. To the nearest percent, what is the percent of decrease in the amount of students who will be enrolled?

Answers

Answer:

16 percent decrease

Step-by-step explanation:

what is 1 oz in tbsp

Answers

There are 2 tablespoons in 1 fluid ounce. This conversion is often used in cooking and baking recipes, where ingredients are measured in ounces or tablespoons.

Fluid ounces and tablespoons are both units of volume used to measure liquids in cooking and baking recipes. One fluid ounce is equal to 29.5735 milliliters or approximately 2 tablespoons, which is equivalent to 6 teaspoons. Therefore, there are 2 tablespoons in 1 fluid ounce.

This conversion is important to know when following recipes that call for ingredients in fluid ounces or tablespoons. It allows for accurate measurement of ingredients, which is crucial for successful cooking and baking. Other common units of volume used in the kitchen include teaspoons, cups, and quarts, among others.

Learn more about ounce:

https://brainly.com/question/29374025

#SPJ4

What is the volume of the triangular prism?

What is the volume of the triangular prism?

Answers

Answer:

Step-by-step explanation:

6x16

6x8 (don't divide)

6x8.5 (don't divide)

8.5x16 (don't divide)

(I THINK I HAVE NO IDEA)

What number would correctly replace the G?

What number would correctly replace the G?

Answers

Answer:

40

Step-by-step explanation:

x is being multiplied by 8 to get y

so 5 x 8 = 40

Help me with this!!!

Help me with this!!!

Answers

Answer:

z = 9

Step-by-step explanation:

JH is a perpendicular bisector of Δ IJK.

Thus the triangle is isosceles with

JK = JI , that is

7z = z + 54 ( subtract z from both sides )

6z = 54 ( divide both sides by 6 )

z = 9

1. Find the maximum and minimum values of z = 2x + 3y subject to the following constraints
\(0 \leqslant x \leqslant 7\)
\(y \geqslant 1\)
\(2x - y \geqslant - 5\)
\(x + y \leqslant 11\)
Copy and paste the text below and put your answers into the blanks. maximum value =
when x =
and y =
minimum value =
when x =
and y=​

Answers

Answer:

Minimum Values:

x = 0, y = 1, z = 3

Maximum Values:

x = 7 , y = 11 , z = 47

Step-by-step explanation:

FOR MINIMUM VALUES:

0<= x <= 7

It is clear from the above inequality that the minimum value of x must be 0.

y>= 1

This inequality shows that the minimum value of y must be 1. Using these minimum values of x and y to get the minimum value of z:

z = 2x + 3y

z = (2)(0) + (3)(1)

z = 3 (Minimum)

FOR MAXIMUM VALUES:

0<= x <= 7

It is clear from the above inequality that the maximum value of x must be 7.

x + y <= 11

To calculate maximum value of y we can use the minimum value of x in this inequality:

0 + y <= 11

y <= 11

Hence, the maximum value of y is 11.

Using these maximum values of x and y to get the maximum value of z:

z = 2x + 3y

z = (2)(7) + (3)(11)

z = 47 (Maximum)

HELP ME PLEASE IM HAVING SO MUCH TROUBLE....

A company offers a nut mixture with 7 peanuts for every 4 almonds. The company changed the mixture to have 8 peanuts for every 5 almonds, but the number of nuts per container does not change.
a. Create a ratio table for each mixture. How many nuts are in the smallest possible container?
b. Graph the ordered pairs from the tables. What could you conclude?
c. Almonds cost more than peanuts. Should the company charge more or less for the new mixture? Explain your reasoning.

Answers

Pretty sure it’s B I could be wrong
Other Questions
an isomer of C3H7O undergoes one step oxidation reaction. Answer the following questions due to this reaction.a) Write a full symbol equation for this reaction b) Name the proper reagent and catalyst for this reaction.c) Why do you think there is no need to remove the product from the reaction vessel? How can ones participation in dance activities like ballroom dance improve ones life? Plss help mee need it now Someone please help me ?!?! Frances bought 4 brownies and slit them into 6 gift baskets. How many brownies went into each gift basket. Un rbol se vende en base a la circunferencia de su tronco. Si el tronco de un rbol tiene un radio de 4 pulgadas, cul es la circunferencia del tronco del rbol? TRUE/FALSE. comedy of manners is a form of comic drama that emphasizes a sophisticated atmosphere and witty dialogue. Consider the rechargeable battery: Zn(s)0ZnCl (aq)7Cl2(aq)0Cl (l)0C(s) (a) Write reduction half-reactions for each electrode. From which electrode will electrons flow from the battery into a circuit if the electrode potentials are not too different from E 8 values All of the following were results of the "Great Awakening" EXCEPTA)the growth in compulsory education,B)an increased number of new religious denominations.C)the creation of more university and theological schools.D)less political participation locally and more reliance on ministers to makeall decisions CAN SOMEONE HELP WITH THIS QUESTION? the use of class 2 or 3 ansi high-visibility vests when operating on a roadway is a requirement of: What can be deployed to intercept and log network traffic passing through the network?NIDSsprotocol analyzersevent viewersproxy catchersNIPSs Explain the main elements of theme and variation. Which invasion of the Roman Empire was the first to reach the city of Rome? What are the adverb of place and degreeIt is surprising that posh spice admitted that she had never read a book Type your answer into the box.There are 10 numbers listed below.13.5 12.5 10.8 9 111012.5 13 10.5 12What is the median of these numbers?4 1. Name the structure at the green arrow. 2. What is the region defined by the red diamond? Of sexually active college students, what percent report that they used a condom or other protective barrier in the last 30 days? What is the slope of the line that passes through the points A(-2,3) and B(-12,6)? Select the correct answer. The elevations of five points below sea level are given here. Which elevation is closest to sea level? A. -50 feet B. -68 feet C. -77 feet D. -86 feet E. -97 feet create the physical model: r-1 (x,y,z): 0,0,200 ft (this is the reservoir) j-1 (x,y,z): 200,0,0 ft j-2 (x,y,z): 500,200,0 ft j-3 (x,y,z): 1000,0,0 ft all pipes are 6 inch with c value of 130. add 150 gpm demand only on j-3. analyze the system. what is the velocity (fps) in the pipe connecting j-1 and j-3?