Given a connected Graph $G(V,E)$ with weights $w\colon E\to\mathbb{N}$ and $|V|=kn$. How can I find the minimum spanning forest $T_1,T_2, \dots, T_n$ where each tree $T_i$ has exactly $k$ vertices?
I wonder if this problem is P or NP, I am particularly interested in the case $k=3$.
Note that trees of order 2 and 3 are stars. Therefore tree partition problem is star partition for $k \in \{\,2, 3\,\}$.
A weighted version of the tree decomposition problem includes all unweighted cases, therefore it is also NP-hard for $k = 3$. For $k = 2$ the minimum weight maximum matching problem is known to be solvable in polynomial time.