Jump to content
BrainDen.com - Brain Teasers
  • 1

Arrange numbers and operators to the magic triangle


jasen
 Share

Question

 

Note : A # B = A*10 + B

Arrange the numbers 1 to 9 to green triangles, and arrange operator (+,-,x,/,^, and #) to the white triangles, so the math operations below are equals.

  • (((A op1 B) op2 D) op4 F) = constant
  • (((F op4 G) op5 H) op6 I) = constant
  • (((I op6 E) op3 C) op1 A) = constant
  • A x F x I = constant

magic triangle.png

  • Upvote 1
Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 2

It was surprising to find that there is only one solution. Here's how I found it.

It's computationally challenging - brute force is possible, but I took it as a challenge to solve it efficiently. Even so, aside from guessing, there is no way to avoid evaluating the expression ((AoB)@C)%D for all 9x8x7x6=3024 variable permutations and all 6x5x4=120 operator permutations, 362880 computations in all. But I only did each once. Next I noticed that not all the results were valid.

  Reveal hidden contents

It turns out there are only 3928 valid expressions - about 1.1% of the cases. But all 362880 have to be evaluated to determine that fact and find the valid ones. Each valid expression represents a candidate for a side of the triangle. I put the results into a table. No further calculations were necessary. The first 15 rows (candidate sides) look like this:

  Reveal hidden contents

A solution to the triangle is a set of three sides that

  1. "Connect" at their end values (and ops)
  2. Use all the values
  3. Use all the ops
  4. Share a common expression value (equal to the product of the three corners)

There were 60 valid results for the expressions:

  Reveal hidden contents

And the full table did not have to be searched. Only segments of the full table had to be searched: those records with a common result. For example, the 2 sides that evaluated to 240.

  Reveal hidden contents

Or the 13 sides that evaluate to 252.

  Reveal hidden contents

Or the 79 sides that evaluate to 45.

  Reveal hidden contents

That is the only solution.

Link to comment
Share on other sites

  • 0
  On 11/16/2016 at 9:04 PM, bonanova said:

Clarification?

Each variable {A B C D E F G H I} can be used only once.
I now assume, but it's not clear, that each operator {+ - x / ^ 10A+B]} can be used only once, making (9!)(6!) cases.

I started allowing any operator to be used in each white triangle.

Expand  

Yes you are right, each operator  only can be used once. making ((9!)(6!))/3 cases. (Because of the symmetry)

Edited by jasen
Link to comment
Share on other sites

  • 0

When creating this puzzle (using computer), I started with 3 first constraints, then I got many solutions, so I have to add 1 more constraint. But I have to keep the symmetry of the puzzle. First I tried to sum the three corners, but I still got some solutions. Then  I tried to product the three corners, which yields 1 unique solution.

When creating this puzzle (using computer), I started with 3 first constraints, then I got many solutions, so I have to add 1 more constraint. But I have to keep the symmetry of the puzzle. First I tried to sum the three corners, but I still got some solutions. Then  I tried to product the three corners, which yields 1 unique solution.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...