Lattice properties

library(fcaR)

Introduction

Formal Concept Analysis (FCA) connects data analysis with Order Theory and Lattice Theory. Beyond simply extracting concepts, it is often useful to analyze the algebraic structure of the resulting Concept Lattice.

This vignette introduces a new set of features in fcaR, Algebraic Properties: Efficiently check if a concept lattice is distributive, modular, semimodular, or atomic.

1. Checking lattice properties

The ConceptLattice class now provides methods to verify standard lattice-theoretic properties. These checks are implemented in optimized C++ for performance.

Let’s use the built-in planets dataset as an example:

fc <- FormalContext$new(planets)
fc$find_concepts()

# Check properties
print(paste("Is Distributive?", fc$concepts$is_distributive()))
#> [1] "Is Distributive? FALSE"
print(paste("Is Modular?",      fc$concepts$is_modular()))
#> [1] "Is Modular? FALSE"
print(paste("Is Semimodular?",  fc$concepts$is_semimodular()))
#> [1] "Is Semimodular? FALSE"
print(paste("Is Atomic?",       fc$concepts$is_atomic()))
#> [1] "Is Atomic? TRUE"

Understanding the properties

Example: A non-distributive lattice (\(M_3\))

The “Diamond” lattice (\(M_3\)) is the smallest non-distributive lattice. Let’s create it manually to verify our checks.

# Context for M3 (The Diamond)
# 3 objects, 3 attributes. Objects have 2 attributes each.
I_m3 <- matrix(c(
  0, 1, 1,
  1, 0, 1,
  1, 1, 0
), nrow = 3, byrow = TRUE)

fc_m3 <- FormalContext$new(I_m3)
fc_m3$find_concepts()

# M3 is Modular but NOT Distributive
print(paste("M3 Distributive:", fc_m3$concepts$is_distributive()))
#> [1] "M3 Distributive: TRUE"
print(paste("M3 Modular:",      fc_m3$concepts$is_modular()))
#> [1] "M3 Modular: TRUE"

2. Arrow Relations

Arrow relations highlight the structural relationships between objects and attributes in a binary formal context. They are particularly useful for identifying irreducible elements and understanding the lattice structure.

For a pair \((g, m) \notin I\): - \(g \swarrow m\) iff \(g'\) is maximal among intents not containing \(m\). - \(g \nearrow m\) iff \(m'\) is maximal among extents not containing \(g\). - \(g \updownarrow m\) iff both \(g \swarrow m\) and \(g \nearrow m\).

In fcaR, you can compute these relations using the calculate_arrow_relations() method. Once computed, the print() and to_latex() methods will display the arrows:

# Use the planets dataset
fc <- FormalContext$new(planets)
fc$calculate_arrow_relations()

# The print method now shows the arrows
print(fc)
#> FormalContext with 9 objects and 7 attributes.
#>          small  medium  large  near  far  moon  no_moon  
#>  Mercury   X      ↙      ↙     X    ↙   ↕      X     
#>    Venus   X      ↙      ↙     X    ↙   ↕      X     
#>    Earth   X      ↙      ↙     X    ↕    X      ↕    
#>     Mars   X      ↙      ↙     X    ↕    X      ↕    
#>  Jupiter   ↕     ↕      X     ↙    X     X      ↙    
#>   Saturn   ↕     ↕      X     ↙    X     X      ↙    
#>   Uranus   ↕      X      ↕    ↙    X     X      ↙    
#>  Neptune   ↕      X      ↕    ↙    X     X      ↙    
#>    Pluto   X      ↕      ↕    ↕    X     X      ↙