I'll take the first one.
1)
The wording ones are kinda tricky, but you have to look for where it says "and" to see which numbers are supposed to be applied to each other with the given operator. If you see an operator, you have to look for the and directly after it. On one side of the and is the first number to apply, on the other side of the operator is the other number. If you see a second operator on the other side of the first, then you have to figure out what's there before going back to the first. My explanation is bad, so I tried to work it out below.
"is" is =
product is multiple
difference is subtract
sum is add
quotient is divide
a)
1. "n is" --- n =
2. "the product of the difference between n squared and 7, and n cubed" --- there are two operators here, so we have to figure out the second one first...
3. "the difference between n squared and 7" --- (n²-7)
then we can go back to 2...
4. "the product of the difference between n squared and 7, and n cubed " --- from 3, we know "the difference between n squared and 7" is (n²-7), so we can plug that into the rest of this... so, its "the product of (n²-7), and n cubed" --- n²-7 * n³
5. put it all together --- n = n² - 7 * n³
b) 10 < (n/n-6)
"ten less than" --- 10 <
"the difference between n and six" --- n-6
"the quotient of n and the difference between n and six" --- n/n-6