Ivan Shishkin, Rye (1878)

Problems/CombinatoricsReviewed

How to split a chocolate bar

by Sequoia·
18
Difficulty scaleÉchelle de difficulté

This score reflects both the level of the required concepts and the difficulty of the solution.Ce score tient compte à la fois du niveau des notions nécessaires et de la difficulté de la résolution.

  1. 110First steps / middle schoolPremiers pas / collège
  2. 1125Beginner / high schoolDébutant / lycée
  3. 2650Intermediate / undergraduateIntermédiaire / licence
  4. 5170Advanced / graduateAvancé / master
  5. 7190Expert / specializedExpert / spécialisé
  6. 91100Research levelNiveau recherche
These levels are approximate guides.Ces niveaux sont des repères approximatifs.
·
English
EnglishFrançais

Take two positive integers a,ba,b and consider a rectangle of size a×ba\times b in a grid of mesh size 1×11\times 1. It models our chocolate bar, and the cells of the mesh are the chocolate pieces.

Say that a "cut" of this bar consist in choosing a piece and a vertical or horizontal grid line, then splitting that piece into two smaller pieces along this line.

image

What is the minimal number of cuts needed to completely separate the chocolate bar into its abab pieces?

I solved itMark it doneAdd to my listKeep it in your list

Hints

1

Hint 1

Open this only if you want a small nudge before looking at the solutions.

Solutions

2
Reveal solutionsAre you sure? Give it a try first.

Solution by Ancient Tree

Discussions0 useful votes

Each cut increases the number of pieces by 1, no matter how you want to cut it ! Starting from a single piece, there needs to be ab1ab-1 cuts to reach abab pieces.

Potential issue reported

Solution by unkempt6571FR

Discussions10 useful votes

On découpe d’abord en aa colonnes (de dimensions b×1b\times1) ce qui nécessite a1a-1 découpes.
Puis, on découpe chaque colonne en carrés de dimensions 1×11\times 1, ce qui nécessite b1b-1 découpes pour chaque colonne.
On a donc réalisé au total : a1+a(b1)=a1+aba=ab1a-1 + a(b-1) = a - 1 + ab - a = ab -1 découpes

Report

For an unclear, ambiguous, or possibly incorrect statement, please use the Discussion tab on the right. Report content that needs moderator intervention, such as dangerous, clearly non-mathematical, or plagiarized content.