Answer:
b and c
Step-by-step explanation:
(Y+4)(y+2) is this what it supposed to look like? Cause I don’t really remember.
The value of angle x is 113 degrees and y is 67 degrees.
What is angle?
In euclidean geometry, an angle is that the figure shaped by 2 rays, referred to as the perimeters of the angle, sharing a typical end point, referred to as the vertex of the angle. Angles shaped by 2 rays exist the plane that contains the rays.
Main body:
Given ;
∠C = 62°
∠A =51°
according to triangle sum property: Sum of angles of triangle is 180°
Using it,
62° +51° +∠y = 180°
113°+ ∠y =180°
∠y = 67°
∠x is equal to the sum of interior opposite angle ,so using it we get:
∠x = 61°+52°
∠x = 113°
Hence the value of ∠x is 113 degrees and y is 67 degrees.
To know more about angle , visit:
brainly.com/question/25770607
#SPJ1
Answer:
recursive: f(0) = 7; f(n) = f(n-1) -8
explicit: f(n) = 7 -8n
Step-by-step explanation:
The sequence is an arithmetic sequence with first term 7 and common difference -8. Since you're numbering the terms starting with n=0, the generic case will be ...
recursive: f(0) = first term; f(n) = f(n-1) + common difference
explicit: f(n) = first term + n·(common difference)
To get the answer above, fill in the first term and common difference values.