As far as my understanding goes, to show that a problem A is NP-hard, we use another NP-complete problem B. We reduce (in polynomial time) from B to A, i.e. use A to solve B. This shows that A is harder than or equal to B, which proves that it is NP-hard.
However, I don't understand why A is harder than B? I feel like I'm missing a part after the reduction step.
Apologies if my understanding is wrong, or if this is a duplicate question.