Play Euchre Online vs the Computer
Play Euchre — the classic North-American partnership trick-taking card game — directly against three computer opponents, free, in your browser, with no download and no sign-up. You sit South with your partner across the table (North); the other two seats are opponents. Each hand you get five cards, a card is turned up, and the bidding decides trump: order up the turned card or, in a second round, name a suit. The two Jacks of the trump colour are the bowers — the highest cards in the game. You must follow suit, and the team that names trump must take at least three of the five tricks. Beginner plays loose cards, Medium plays a solid partner-aware game, and Hard runs a determinized Monte-Carlo engine. Legal cards are highlighted, and your wins are tracked per difficulty.
How the AI thinks
Euchre, like Hearts, is not a perfect-information game — you can see only your own five cards, the turned-up card and what has been played — so the opponent cannot use plain minimax. The Hard level instead uses determinized Monte-Carlo: it deals the cards it cannot see into the other hands in many plausible ways, respecting who has shown void in a suit and the cards already accounted for, and plays each imagined hand out to the last trick with a fast, partner-aware heuristic. Because Euchre is a partnership game, every playout is scored for your team — makers try to reach three tricks (and a march of all five), defenders try to euchre the makers — and a trick-margin term gives the search a smooth gradient toward the plays that actually change the score. The whole engine runs locally in your browser, in a background worker thread so the page stays responsive, and nothing is sent to a server. It is a strong, honest opponent, though we do not claim it plays perfectly — in Euchre the deal matters a great deal.
Curious how game-tree search works? Watch minimax and alpha-beta run, step by step →
How to play Euchre — the rules
- Deck and deal. Euchre uses 24 cards — 9, 10, Jack, Queen, King and Ace of each suit. Everyone gets five cards and the next card is turned face up.
- Bidding. Starting to the dealer's left, each player may order up the turned card's suit as trump (the dealer then picks it up and discards). If all four pass, a second round lets players name a different suit; under stick-the-dealer, if it reaches the dealer they must choose one.
- The bowers. The Jack of trump is the right bower, the highest card. The Jack of the same-colour suit is the left bower, second-highest, and it counts as a trump — so it no longer follows its printed suit.
- Play. You must follow the led suit if you can; otherwise play anything, including a trump. The highest trump wins the trick, or the highest card of the led suit if no trump is played.
- Going alone. The team that calls trump may go alone: their partner sits out and one player takes on both opponents for a chance at 4 points.
- Scoring. Makers taking 3 or 4 tricks score 1; all 5 (a march) scores 2; a lone march scores 4. If the makers fail to take three tricks they are euchred and the defenders score 2. First team to 10 wins.
Tips to beat the AI
- Count your bowers. The right and left bower plus an ace or two is usually enough to order up trump confidently — and to think about going alone.
- Lead trump when you're the maker. Pulling the opponents' trump protects your off-suit aces from being trumped later.
- Don't trump your partner. If your partner is already winning the trick, throw off a loser instead of wasting a trump.
- Remember the left bower. When you name trump, the Jack of the same colour joins your trump suit — and leaves the suit it's printed in a card short.
FAQ
Can I play Euchre online against the computer?
Yes — that is exactly what this page is. You sit South with your partner across; pick a difficulty, bid over the turned-up card, and click a highlighted card to play. Works on desktop and mobile, free, with no account.
What are the right and left bowers?
The right bower is the Jack of the trump suit — the highest card. The left bower is the Jack of the other suit of the same colour; it counts as a trump, just below the right bower, and no longer follows its printed suit.
What does going alone mean?
When your team names trump you may play the hand alone: your partner sits out and you face both opponents by yourself. Take all five tricks alone and you score 4 points instead of 2.
What is stick-the-dealer?
A common rule that keeps hands moving: if all four players pass both bidding rounds, the dealer is forced to name a trump suit rather than throwing the hand in. This game uses stick-the-dealer.
Is it free? Does it work offline?
Completely free, no download, no sign-up. The engine runs client-side, so once loaded the game keeps working without a connection. More AI games: AI Hearts, AI Chess, AI Backgammon or all games.