$`score(q, d)`$: The relevance score of a document $`d`$ for a query $`q`$ with terms $`t`$
$`queryNorm(q)`$: The query normalization factor. Is used so that multiple different queries can be compared.
$`coord(q, d)`$: The coordination factor. If a document contains 3 query terms its ranked higher than a document that only contains 2 terms. (Turn off for synonyms)
Then the sum for each of the terms $`t`$ in $`q`$:
- Query Boost: Combined with the queryNorm in explaination. Individual queries can be positively and negatively boosted when multple queries are executed.
- Field length normalization (norm): $`norm = 1/sqrt(numFieldTerms)`$ Inverse square root of the number of terms in the field. Normalizes documents, so that long documents with many terms are scored like short documents with less terms.
### Field Boost
One can add a higher weight to a field , so that this field influences the overall score more than other fields.