Open In App

Puzzle | Maximum pieces that can be cut from a Circle using 6 straight lines

Last Updated : 03 Jul, 2024
Summarize
Comments
Improve
Suggest changes
Like Article
Like
Save
Share
Report
News Follow

PUZZLE:

Given a Circle and Six Straight Lines. What is the maximum number of pieces that one can cut the circle using these six straight lines?

SOLUTION:

Using six lines, we can cut the circle into 22 pieces at maximum.

  • Using one line, the circle can be divided into two parts.

  • Two lines divide the circle into four parts.

  • Three lines divide the circle into seven unequal parts.

  • Four lines cut the circle into eleven parts.

  • Using five lines, circle can be divided into sixteen parts.

  • Finally, using six lines the maximum parts that can be formed are 22.

We can find out the number of pieces using a mathematical formula also:

Number of pieces  = 1 + (n*(n+1)/2)


Previous Article
Next Article

Similar Reads

Puzzle | 3 cuts to cut round cake into 8 equal pieces
Puzzle: You have a birthday cake and have to cut it into 8 equal pieces by making 3 cuts only. How do you do it? Solution: The solution can be divided into 3 basic steps. But apart from this there are also other method of executing this task. Step 1: Cut the cake into quarters (4 pieces) using 2 of the cuts – one horizontally down the centre of the
1 min read
Puzzle | Connect 9 circles each arranged at center of a Matrix using 3 straight lines
Consider 9 circles each arranged at the center of cells of a 2-D matrix of shape 3*3. Draw 3 straight lines without removing pen from paper such that each of the 9 circles is in contact with at least one line. Solution: A similar problem is present here Connect 9 dots using 4 lines. The difference from above problem is that here there are 9 circles
1 min read
Puzzle | Divide crescent moon into 6 parts in just two straight lines
Puzzle: We have to divide crescent moon in 6 parts, parts size does not matter. Only we have to cut the crescent moon in a way that it should divided into 6 parts but by using only two straight lines? Solution: We can solve the above puzzle in the below way, and we have to cut the moon is a way that two lines must go over each other that increases
1 min read
Puzzle | Place numbers 1 to 9 in a Circle such that sum of every triplet in straight line is 15
Place the numbers 1 to 9 in a circle, so that wherever there are three in a straight line they shall add up to 15. SOLUTION:[video mp4="https://media.geeksforgeeks.org/wp-content/uploads/20200710130155/wpv.mp4"][/video]The sum of first number and last number is ten ( 1 + 9 = 10 ).Similarly, the sum of second number and second last element is also t
2 min read
Puzzle 31 | (Minimum cut Puzzle)
Puzzle: You have got someone working for you for five days and a gold bar to pay him. You must give them a piece of gold at the end of every day. What are the fewest number of cuts to the bar of gold that will allow you to pay him 1/5th each day? Answer: 2 cuts. Solution: Explanation 1: After two cut there are three pieces of [1 unit and two 2 unit
2 min read
Puzzle 81 | 100 people in a circle with gun puzzle
100 people standing in a circle in an order 1 to 100. No. 1 has a sword. He kills the next person (i.e. No. 2) and gives the sword to the next (i.e. No. 3). All people do the same until only 1 survives. Which number survives at the last? There are 100 people starting from 1 to 100. Solution: 73rd person will survive at last Explanation 1 (intuitive
8 min read
Length of intercept cut off from a line by a Circle
Given six integers, a, b, c, i, j, and k representing the equation of the circle [Tex](x^2 + y^2 + ax + by + c = 0)[/Tex] and equation of the line [Tex](ix + jy + k = 0)[/Tex], the task is to find the length of the intercept cut off from the given line to the circle. Examples: Input: a = 0, b = 0, c = -4, i = 2, j = -1, k = 1 Output: 3.89872 Input:
11 min read
Puzzle | Draw 4 straight line in 3*3 matrix (9 dots)
You have given 9 dots in the form of 2d matrix 3 * 3. Your task is to draw four straight lines without lifting the pen and no dot should be left untouched. How will you solve this task? Solution: start from (A) upper corner of the right side to (B) bottom corner of the left side and then B -> C extend some extra line from point C then draw a lin
1 min read
Puzzle | Cut Blue Painted Cube
A solid, n-inch cube of wood is coated with blue paint on all six sides. Then the cube is cut into smaller one-inch cubes. These new one-inch cubes will have either Three blue sides, Two blue sides, One blue side, or No blue sides. How many of each type 1 - inch cube will there be? Solution: This puzzle can be solved logically or mathematically. Af
2 min read
Puzzle | 10 Balls in 5 Lines
Puzzle: Given are ten balls, the task is to place these 10 balls in five lines such that each line contain exactly 4 balls. Solution: The solution to the above puzzle can be obtained as: Draw the star with a pentagon in the centre. Place each ball at the intersection of extended lines of pentagon Then place remaining balls on 5 vertices of pentagon
1 min read
Find area of the larger circle when radius of the smaller circle and difference in the area is given
Given two integers r and d where r is the radius of the smaller circle and d is the difference of the area of this circle with some larger radius circle. The task is to find the area of the larger circle.Examples: Input: r = 4, d = 5 Output: 55.24 Area of the smaller circle = 3.14 * 4 * 4 = 50.24 55.24 - 50.24 = 5Input: r = 12, d = 3 Output: 455.16
4 min read
Program to calculate area of inner circle which passes through center of outer circle and touches its circumference
Given a circle C1 and it's a radius r1. And one another circle C2 whose passes through center of circle C1 and touch the circumference of circle C1. The task is to find out the area of circle C2. Examples: Input: r1 = 4Output:Area of circle c2 = 12.56Input: r1 = 7Output:Area of circle c2 = 38.465 Approach: Radius r2 of circle C2 is [Tex]\ r2 = r1/2
6 min read
Check if a circle lies inside another circle or not
Given two circles with radii and centres given. The task is to check whether the smaller circle lies inside the bigger circle or not.  Examples:   Input: x1 = 10, y1 = 8, x2 = 1, y2 = 2, r1 = 30, r2 = 10 Output: The smaller circle lies completely inside the bigger circle without touching each other at a point of circumference. Input :x1 = 7, y1 = 8
6 min read
Equation of circle when three points on the circle are given
Given three coordinates that lie on a circle, (x1, y1), (x2, y2), and (x3, y3). The task is to find the equation of the circle and then print the centre and the radius of the circle. The equation of circle in general form is x² + y² + 2gx + 2fy + c = 0 and in radius form is (x - h)² + (y -k)² = r², where (h, k) is the centre of the circle and r is
11 min read
Puzzle | The Circle of Lights
There is a circle of N > 2 lights with a switch next to each of them. Each switch can be flipped between two positions, thereby toggling the on/off states of three lights: its own and the two lights adjacent to it. Initially, all the lights are off. Design an algorithm for turning all the lights on by flipping the minimum number of switches. Sol
2 min read
Puzzle - 3 Hats in a Circle
Puzzle: Placed in a room without mirrors are three males who are not wearing glasses. They are each given a headgear that they are unable to see. The color of the hat is either red or green. They are not permitted to look at their own hats in any way, and they are not allowed to speak or interact with each other in any way other than by raising the
3 min read
Lucky alive person in a circle | Code Solution to sword puzzle
Given n people standing in a circle where 1st has a sword, find the luckiest person in the circle, if, from 1st soldier who is has a sword each has to kill the next soldier and handover the sword to next soldier, in turn, the soldier will kill the adjacent soldier and handover the sword to next soldier such that one soldier remains in this war who
7 min read
Puzzle | Man fell in well Puzzle
A man fell in a 50m deep well. He climbs 4 meters up and slips 3 meters down in one day. How many days would it take for him to come out of the well? Answer: 47days Explanation: On the first day, the man climbs 4 meters up and slips 3 meters down, therefore he only climbs 1 meter up totally.On the second day, again he climbs 1 meter up, so the tota
1 min read
Puzzle - A LITTLE TRAIN PUZZLE
A nonstop express going sixty miles an hour starts from Bustletown for Ironchester, and another nonstop express going forty miles an hour starts at the same time from Ironchester for Bustletown. How far apart are they exactly an hour before they meet?Because the two stations cannot be found on any map or gazetteer, we cannot state the distance betw
1 min read
Puzzle | The Einstein's Puzzle
Einstein's puzzle is a famous logic puzzle that was supposedly created by Albert Einstein as a boy. The puzzle goes as follows:There are five houses in a row, each with a different color. In each house lives a person of a different nationality. The five owners drink a certain type of beverage, smoke a certain brand of cigar, and keep a certain pet.
4 min read
Puzzle 15 | (Camel and Banana Puzzle)
A person has 3000 bananas and a camel. The person wants to transport the maximum number of bananas to a destination which is 1000 KMs away, using only the camel as a mode of transportation. The camel cannot carry more than 1000 bananas at a time and eats a banana every km it travels. What is the maximum number of bananas that can be transferred to
4 min read
Puzzle 24 | (10 Coins Puzzle)
You are blindfolded and 10 coins are placed in front of you on the table. You are allowed to touch the coins but can’t tell which way up they are by feel. You are told that there are 5 coins head up, and 5 coins tails up but not which ones are which. Can you make two piles of coins each with the same number of heads up? You can flip the coins any n
1 min read
Puzzle 27 | (Hourglasses Puzzle)
Puzzle: Given two hourglass of 4 minutes and 7 minutes, the task is to measure 9 minutes. Solution: At 0 minutes: Start both hourglasses at the same time. At 4 minutes: 4 minutes hourglass runs out and flip it. 7 minutes hourglass is left with 3 minutes. At 7 minutes: 4 minutes hourglass is left with 1 minute. 7 minutes hourglass runs out and flip
1 min read
Puzzle 28 | (Newspaper Puzzle)
Question: A newspaper made of 16 large sheets of paper folded in half. The newspaper has 64 pages altogether. The first sheet contains pages 1, 2, 63, 64. If we pick up a sheet containing page number 45. What are the other pages that this sheet contains? Answer: On the back of 45, it is 46. The pages are such that for each page p, 65-p will be also
1 min read
Puzzle 33 | ( Rs 500 Note Puzzle )
A Lady (L) bought an item of Rs 100 from the Shopkeeper (C). She paid him through a 500 Rs Note. Realizing that he did not have change, the shopkeeper C got change for that note from another shopkeeper (S) and paid Rs 400 to the Lady. After a few days, S realized that the note is fake, And this railed at C and took 500 Rs back from him. So in this
1 min read
Puzzle 36 | (Matchstick Puzzle)
Question: How to make 4 equilateral triangles with 6 identical match sticks? Method - I: Make a tetrahedron. Method-II: Method - III: Make one equilateral triangle by three sticks . then put each remaining stick on straight line passing through middle points of each two arms of triangle. Method IV: https://youtu.be/DqLOC85SVHQ
1 min read
Puzzle 38 | (Tic Tac Toe Puzzle)
Statement: The game of Tic-Tac-Toe is being played between two players and it is in below state after six moves. Can you answer following questions? Who will win the game, O or X? Which was the sixth mark and at which position? Assume that both the players are intelligent enough. Solution: O will win the game. The sixth mark was X in square 9. Expl
1 min read
Puzzle 39 | (100 coins puzzle)
This puzzle is similar to 10 Coins Puzzle. Question: 100 coins are lying flat on a table. 10 of them are heads up and 90 are tails up.You can't see which one is which.How can we split the coins into two piles such that there are same number of heads up in each pile? Note: It is allowed to flip the coins of one pile once. Answer: Make 2 piles with 1
1 min read
Puzzle 51| Cheryl’s Birthday Puzzle and Solution
(Wiki) Cheryl's Birthday is the unofficial name given to a mathematics brain teaser that was asked in the Singapore and Asian Schools Math Olympiad, and was posted online on 10 April 2015 by Singapore TV presenter. It is an interesting problem and might be asked in the interviews. It is based on logical deduction. It doesn’t require any prior mathe
3 min read
Puzzle 85 | Chain Link Puzzle
You have five pieces of chain, each consisting of three links. You want to make one long chain of these five pieces. Breaking open a link costs 1 Rs, and welding an open link costs 3 Rs. Is it possible to make one long chain of the five pieces, if you have just 15 Rs? Solution: Let us name the chains as 1, 2, 3, 4, 5 each having three links. Take c
1 min read
Article Tags :
Practice Tags :
three90RightbarBannerImg