DEV Community

HYUN SOO LEE
HYUN SOO LEE

Posted on

Day Pillar #2 of 60: 乙丑 (을축) — A Deep Dive into BaZi Personality Patterns

Today we're analyzing 乙丑 (Eul-Chuk), the 2nd of 60 Day Pillars in BaZi (四柱推命). This pillar represents the Gentle Pragmatist archetype, classified as Tier C rarity (~9.8% of population). Live demo: runartree.com.


What is the 乙丑 Day Pillar?

乙 (Yin Wood) takes root in 丑 (Yin Earth) — soft grass anchored in fertile soil. The surface looks gentle, but inside lies tenacious vitality and pragmatic judgment.

Pillar composition:

  • Heavenly Stem: (Wood element, Yin)
  • Earthly Branch: (Earth element, Yin)
  • Dominant Ten Star: Pyeon-Jae (偏財, Indirect Wealth)
  • Rarity tier: C (9.8% of population)

The Three Recurring Relationship Patterns

Our Myeongri Engine identifies three primary patterns for 乙丑 natives:

Pattern 1

Devotes deeply to others while quietly expecting reciprocity — disappointment accumulates over time.

Pattern 2

Suffers from decision paralysis and often lets meaningful connections slip away.

Pattern 3

Seeks stable partners, yet finds them dull once the relationship actually begins.

Root Cause Analysis

The engine traces these patterns to a single root:

A contradictory desire — craving stability and stimulation at the same time.

Algorithm Snapshot

Here's how the engine identifies 乙丑:

// Day Pillar resolver
const STEMS = ['','','','','','','','','',''];
const BRANCHES = ['','','','','','','','','','','',''];

function resolvePillar(birthDate) {
  const BASE_DATE = new Date('1900-01-01T00:00:00Z');
  const daysSinceBase = Math.floor((birthDate - BASE_DATE) / 86400000);
  const pillarIndex = (10 + daysSinceBase) % 60;
  return {
    pillar: STEMS[pillarIndex % 10] + BRANCHES[pillarIndex % 12],
    stem_element: '',
    branch_element: '',
    dominant_star: 'Pyeon-Jae',
    tier: 'C'
  };
}

// 乙丑 example output
// { pillar: '乙丑', dominant_star: 'Pyeon-Jae', tier: 'C' }
Enter fullscreen mode Exit fullscreen mode

Try Your Own Day Pillar

Live demo (free, no signup): runartree.com

Tomorrow's analysis: the next pillar in our 60-day series.


This is part 2/60 of the BaZi Day Pillar Series by Runar Tree.

Top comments (0)