I have two lists:
u = {{1, 3}, {2, 6}, {3, 9}}
v = {0, 4}
and I want to obtain this list from them:
z = {{{0, 1}, {4, 3}}, {{0, 2}, {4, 6}}, {{0, 3},{4, 9}}}
I guess the solution will make use of Map, Thread, or even MapThread but I've tried every combinaison I can think of with no luck. How can I do it?


Transpose[Thread /@ Thread[{v, Transpose[u]}]]– Leonid Shifrin Jan 7 at 17:37Read the FAQs! 3) When you see good Q&A, vote them up byclicking the gray triangles, because the credibility of the system is based on the reputation gained by users sharing their knowledge. ALSO, remember to accept the answer, if any, that solves your problem,by clicking the checkmark sign` – Vitaliy Kaurov Jan 8 at 13:38