Answer:
domain: {2, -1, 1}
range: {3, 4 6}
Step-by-step explanation:
In the relation of the form (x,y)
Set of all possible value of X is called Domain
Set of all possible value of Y is called Range
To get a list of domain and range it is required to separate value of x and y
_________________________________
Relation given in the problem
S:{(2,3),(−1,4), (1,6)}
domain: {2, -1, 1}
range: {3, 4 6}
Answer:
15
Step-by-step explanation:
okay so you gotta use pemdas (p = parentheses, e = exponents, m = multiplication, d = division, a = addition, s = subtraction), but for the multiplication/division and addition/subtraction parts, if division or subtraction happens first then you must do it first rather than doing multiplication or addition first
10 / 2 -(16/4) + 14
10 / 2 -(4) + 14
5 - 4 + 14
1 + 14
15
Answer:
36
Step-by-step explanation:
becuase each row has 6 in them and there are 6 rows so 36 is the final answer
9514 1404 393
Answer:
cos(x) = 0.6
Step-by-step explanation:
First, we need to find UQ.
UQ = UP·cos(y°) = UP·√(1 -sin²(y°)) = (26 cm)√(1 -25/169) = (26 cm)(12/13)
UQ = 24 cm
Then TQ is ...
TQ = 1/3UQ = 1/3(24 cm) = 8 cm
And cos(x°) is ...
cos(x°) = √(1 -sin²(x)) = √(1 -64/100)
cos(x°) = 6/10 = 3/5
cos(x°) = 3/5 = 0.6
Assuming we need to find i such that
1 ≤ i ≤ n and t[i]=i.
If we need to find only the first occurrence, we can do:
for i:1 to n {
if t[i]=i then return(i)
}
If exhaustive search is required, then put the results (values of i) in an array or a linked list, return the number of values found, and the array (or linked list).