I have decided to use the likelihood ratio test to evaluate if all the covariates my model considers are strictly necessary, as explain in page 388 and later illustrated in Example 14.4 of Statistical methods for survival data analysis, by Lee and Wenyu Wang (3rd ed.).
Unfortunately for me, my model is trained in R based on a modified log-likelihood function that also contains a regularisation parameter of the form
$$ C_1\sum_ j \|\vec{b}_j\|^2 . $$
The index $j$ runs over the measurement times (see the details below).
Here, an extra covariate translates to a non-zero component in any of $\vec{b}_j$, and I want to find out how many I can add, based on this likelihood ratio test.
Due to the setup of the problem, I would like to know:
1.- Does a likelihood ratio test still make sense when the likelihood function has been modified?
2.- In case it does, is it clear that
$$W = -2(\ell(\vec{b}_j) - \ell(\vec{b}_j'))$$
follows a chi-square distribution with one degree of freedom (as the example referred) or should I carry my own analysis to see the number of degrees of freedom (I do hope it will still follow a chi-square distribution)?.
Further details
Formally, I am dealing with a non-homogenous finite Markov chain, where each $X_j$ corresponds to a “measurement” and the state space is $S=\{0,1\}$ (alive or dead). The model computes the probability of observing a particular sequence $x=(x_1,\dots,x_N)$, where each $x_j=0$ or $1$ and of course $P(X_{j+1}=0|X_j = 1) = 0$. The regularisation term above is introduced apparently to avoid overfitting and to make sure that the parameters $\vec{b}_j$ vary smoothly from time $j$ to $j+1$.
The final probability is a sort of logistic regression, but it is actually easier to understand from the Markov random fields perspective.
EDIT:
As it seems there was some confusion, please let me clarify. The model I use has a modified likelihood function that includes a regularisation term. Right now, changing the likelihood function is not a plausible option. The question should be understood as: Given this modified likelihood function, what...?
Looking for a deduction for the likelihood ratio test, I have found the book Likelihood Methods in Statistics, by Thomas Severini, which present the expansion in Taylor series of $W$ as well as the necessary assumptions for it to follow a $\chi^2$ distribution in a certain number of degrees of freedom.
Now, I realise that question 1 is trivial: of course a likelihood ratio test make sense. The question should be:
What distribution does $W$ follow?