densityreachability
Density reachability is a concept used in density-based clustering to describe when one point in a data set can be reached from another by traversing a chain of neighboring points that meet a density criterion. It underpins how clusters are formed in algorithms such as DBSCAN and OPTICS, which rely on dense regions rather than purely geometric proximity.
Formally, with parameters ε (radius) and MinPts (minimum points), a point p is a core point if the
Related concepts include density connectivity: two points p and q are density-connected if there exists a point
In practice, DBSCAN forms clusters by aggregating all points that are density-reachable from some core point,