The subset-sum problem is a classic NP-complete problem:
Given a list of numbers $L$ and a target $k$, is there a subset of numbers from $L$ that sums to $k$?
A student asked me if this variant of the problem called the "subset product" problem is NP-complete:
Given a list of numbers $L$ and a target $k$, is there a subset of numbers from $L$ whose product is $k$?
I did some searching and couldn't find any resources that talked about this problem, though perhaps I missed them.
Is the subset product problem NP-complete?