A map from term → posting list (the documents containing the term, often with positions). Lets a search engine answer “which docs contain word X?” in time proportional to the result size, not the corpus size.
Key formulas
Index size: ∑t∣postings(t)∣
Query (AND): intersect posting lists in O(∑∣Li∣)
TF-IDF weight: w(t,d)=tf(t,d)⋅log(N/df(t))
For efficient storage of inverted indicies refer to ARTs (Adaptive Radix Tree)