7. subtraction property
division property
8. subtraction property
multiplication property
9. distribution property
addition property
division property
10. distribution property
combine like terms
addition property
division property
11. combine like terms
distribution property
subtraction property
subtraction property
division property
what............there’s no pic
Reduce 35/100 to 7/20 by dividing both sides by 5.
2/5 is bigger than 7/20.
2/5 > 7/20 or 2/5 > 35/100 if you leave it unsimplified
Hope this helps :)
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).