The expressions that can represent the dimensions of the prim is (x), (3x+1) and (4x-1).
Answer:
It should be obtuse.
Step-by-step explanation: if i'm not mistaken it has to be obtuse. sorry i'm still learning i'm a beginner but, i'm volunteering to help everyone anyways because i'm a very nice person.
Plug into y-y1=m(x-x1)
y+4=4(x-4)
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).