Given a directed graph, a feedback vertex set is a subset of vertices whose removal leaves no cycles:
Karp's reduction is from vertex cover: subdivide each edge, and a vertex cover in the original becomes a set satisfying (1) in the subdivision.
Like vertex cover, the problem is fixed-parameter tractable in the answer size k — recent work runs in time
making (1) cheap to test when the cuts are small. But it remains inapproximable beyond constant factors in the general case. The undirected variant is also NP-hard, with somewhat friendlier approximation properties.