| Recommendation |
Example |
Why Important? |
Topic # |
| 1. Use nouns and objects as query keywords |
planet or planets |
Actions (verbs), modifiers (adjectives, adverbs, predicate subjects), and conjunctions are either "thrown away" by the search engines or too variable to be useful |
6, 7, 8 |
| 2. Use 6 to 8 keywords in query |
new, planet, planets, discovery, solar, system |
More keywords, chosen at the appropriate "level", can reduce the universe of possible documents returned by 99% or more |
8, 10 |
| 3. Truncate words to pick up singular and plural versions |
planet* or discover* |
Use asterisk wildcard. The wildcard tells the search engine to match all characters after it, preserving keyword slots and increasing coverage by 50% or more |
9, Section 2 |
| 4. Use synonyms via the OR operator |
discover* OR find |
Cover the likely different ways a concept can be described; generally avoid OR in other cases |
11, Section 2 |
| 5. Combine keywords into phrases where possible |
"solar system*" |
Use quotes to denote phrases. Phrases restrict results to EXACT matches; if combining terms is a natural marriage, narrows and targets results by many times |
12 |
| 6. Combine 2 to 3 "concepts" in query |
"solar system"
"new planet*"
discover* OR find |
Triangulating on multiple query concepts narrows and targets results, generally by more than 100-to-1 |
20 |
| 7. Distinguish "concepts" with parentheses |
("solar system")
("new planet*")
(discover* OR find) |
Nest single query "concepts" with parentheses. (Overkill for now, but good practice when first learning.) Simple way to ensure the search engines evaluate your query in the way you want, from left to right |
19 |
| 8. Order "concepts" with subject first |
("new planet*")
(discover* OR find)
("solar system") |
Put main subject first. Engines tend to rank documents more highly that match first terms or phrases evaluated |
7, 19, 20 |
| 9. Link "concepts" with the AND operator |
("new planet*") AND (discover* OR find) AND ("solar system") |
AND glues the query together. The resulting query is not overly complicated nor nested, and proper left-to-right evaluation order is ensured |
14, 20, Section 2 |
| 10. Issue query to full "Boolean" search engine or metasearcher |
("new planet*") AND (discover* OR find) AND ("solar system") |
Full-Boolean engines give you this control; metasearchers increase Web coverage by 3- to 4-fold |
3, 35, 36, 38, Section 2 |