Number of triangles Puzzle - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Software Libraries (/forum-10.html) +--- Forum: HP Prime Software Library (/forum-15.html) +--- Thread: Number of triangles Puzzle (/thread-6542.html) |
Number of triangles Puzzle - chromos - 07-11-2016 05:00 PM The program calculates the number of triangles in the geometrical figures. Example 1: How many triangles are in this puzzle? [attachment=3747] a) First we mark every important point on every line (doesn't matter in which order): [attachment=3748] b) Next we insert every line with their points as sublists into list L0 (doesn't matter in which order): L0:= { {1,2,3}, {1,4,5,6}, {6,10,9}, {3,7,8,9}, {5,11,12,13,14,15,7}, {6,16,17,13,18,19,3}, {2,4}, {4,11,16,20}, {20,21,14}, {14,18,23,2}, {22,19,15,8}, {8,10}, {10,21,17,12}, {12,23,22}, } c) Now run the program. :-) ===================== Example 2: How many triangles are in this puzzle? [attachment=3749] a) First we mark every important point on every line (doesn't matter in which order): [attachment=3750] b) Next we insert every line with their points as sublists into list L0 (doesn't matter in which order): L0:= { {1,2,3}, {3,4,5,6}, {6,7,1}, {1,8,10,4}, {1,9,11,5}, {2,8,9,7}, {3,10,11,7} } c) Now run the program. :-) ===================== PHP Code: // The program calculates the number of triangles in the geometrical figures (puzzles). |