I have probability vector $t_1$ (hours to get '$A$' done), $p({t^{a}_{1})} = [0.25, 0.25, 0.25, 0.25]$ (here: $0.25$ probability for $A$ done in $1, 2, 3$ or $4$ hours).
Another probability vector $t_2$ (hours to get '$B$' done), $p({t^{b}_{2})} = [0.33, 0.33, 0.33]$.
How can I get to probability vector $p({t^{a}_{1}+t^{b}_{2}))}$ (hours to get both $A$ and $B$ done assuming they can only be done one after the other and distributions are independent) using linear algebra operations?
p.s.: I am looking for linear algebraic solution and suspect that there may be a solution via markov chain etc.
You don't need Markov chains. What you need is (discrete) convolution.
While convolution is linear (in both arguments), it is not among the "usual" linear algebra operations. E.g. you have a length-$4$ vector and a length-$3$ vector as the two inputs, and yet the result must be a length-$7$ vector. None of the "usual" linear algebra operations would do that... I'm sure you can write it in terms the usual linear algebra operations, including using block matrices, but it will be specific to the sizes involved, and very tedious, and frankly kinda pointless.
It is possible to map a convolution into a multiplication after a proper transform (e.g. Z-transform), but that does not seem like what you want either.
ADDENDUM
Let the two vectors be $a = [a_1, a_2, a_3, a_4]$ and $b = [b_1, b_2, b_3]$ where $a_j =$ prob that job $A$ takes $j$ hours, etc. Form this outer-product (ignore the color for now):
$$ C =a^T b = \begin{pmatrix} a_1 b_1 & a_1 b_2 & \color{red}{a_1 b_3} \\ a_2 b_1 & \color{red}{a_2 b_2} & a_2 b_3 \\ \color{red}{a_3 b_1} & a_3 b_2 & a_3 b_3 \\ a_4 b_1 & a_4 b_2 & a_4 b_3 \end{pmatrix} $$
Then, if I understand you correctly, you want a vector $f = [...f_k...]$ where $f_k =$ prob that both jobs (done sequentially) will take $k$ hours total. This means $f_k = \sum_{i+j = k} a_i b_j$ and e.g. $f_4 = a_3 b_1 + a_2 b_2 + a_1 b_3$, which as you can see is the sum of the entries in the $\color{red}{red}$ diagonal. Every different $k$ (from $2$ to $7$) is the sum of a different diagonal. Unfortunately for you, there is no standard linear-algebra operation that takes a $4 \times 3$ matrix and returns a length-$6$ vector of the sums of its $+45^\circ$ diagonals. What you're asking for is exactly convolution.
(BTW I suspect you might want to add a $0$ at the front to represent the impossibility of doing the two jobs in $1$ hour?)