Let's take a classic 2-dimensiona vector addition:
Given vector $ \vec{a} $ and angle $\phi$ I need to find $ \vec{b} $ of least possible magnitude such that vector $ \vec{c} = \vec{a}+ \vec{b} $ is at angle $\phi$ to $ \vec{a} $; I don't care about magnitude of $ \vec{c} $.
(actual practical problem I face, optimal angle of burn of a rocket engine to change rocket trajectory by given angle at moment's notice in Kerbal Space Program. I found how to retain magnitude $ | \vec{c} | = |\vec{a}| $ but I'm really not sure how to approach optimizing it when the resultant magnitude is insignificant and I just need to change direction for least cost, simply accepting whatever speed results from that.)
