I am currently working on the reduction method to demonstrate that a set is not recursively enumerable but I am struggling to find suitable functions for the reductions. In particular I have started working on the proving that the EXT set is not r.e.:
$$ EXT=\{x|\phi_x \text{ is extensible to a total recursive function}\} $$
My intuition leads me to try and find a reduction from $\overline{K}$to EXT by defining a function like this: $$ f(x)=\left\{\begin{matrix} \text{extensible function} \quad \text{if } x \epsilon \overline{K} \\ \text{non-extensible function} \quad \text{if } x\epsilon K \end{matrix}\right. $$
by using an already total function as the extensible function (it is already total so it should also be extensible to total) and, for the non-extensible function something like this:
$$ g(x)=\left\{\begin{matrix} x \quad \text{if } x \epsilon K \\ \uparrow \quad \text{if } x\epsilon \overline{K} \end{matrix}\right. $$
which cannot be extended to total as doing so would imply that K is recursive, which we know is not. However, I am not sure whether this would work within the reduction method or not, as I would apply g(x) only when x $\epsilon$ K.
As for the other two sets: $$ TOT=\{x|\phi_x \text{ is total}\} \\ INF=\{x|dom(\phi_x) \text{is infinite}\} $$
again, I was instructed to use a reduction from $\overline{K}$ to the set, but again I find myself struggling with finding a suitable function for the reduction. Any help with how to better understand the method will be appreciated!
EDIT: I thought about the fact that the literature out there might not be consistent. K is the Halting Problem set, meaning that: $$ K= \{ x | \phi_x(x) \downarrow \} $$