Set theory program for hp prime? - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html) +--- Forum: HP Prime (/forum-5.html) +--- Thread: Set theory program for hp prime? (/thread-18903.html) |
Set theory program for hp prime? - DrEureka - 09-30-2022 06:02 AM Hello, I wanted to know if you know of any program that allows me to do this type of joints, for the hp prime. Thx! More info = https://www.math.net/union or https://www.math.net/set-theory RE: Set theory program for hp prime? - matalog - 09-30-2022 03:15 PM Do you just mean the Venn diagrams? If so then you could use something like this, although I really hope there is a better way. Code: EXPORT RQST() RE: Set theory program for hp prime? - Stevetuc - 09-30-2022 03:30 PM (09-30-2022 06:02 AM)DrEureka Wrote: Hello, I wanted to know if you know of any program that allows me to do this type of joints, for the hp prime.Prime has a union command Syntax: UNION(list1 or object1, ... list_n or object_n) UNION concatenates the inputs, removing all duplicates. Example: UNION({1,2,3}, {2,4,8}, 10) → {1, 2, 3, 4, 8, 10} RE: Set theory program for hp prime? - Arno K - 09-30-2022 03:55 PM Not only UNION, there are INTERSECT and DIFFERENCE, too. Arno RE: Set theory program for hp prime? - DrEureka - 09-30-2022 03:57 PM (09-30-2022 03:15 PM)matalog Wrote: Do you just mean the Venn diagrams?I'll check it out, thank you very much. yes from venn diagram RE: Set theory program for hp prime? - DrEureka - 09-30-2022 04:07 PM (09-30-2022 03:15 PM)matalog Wrote: Do you just mean the Venn diagrams? I ask you a question, do you have an example of use, how can I enter several variables? How can I discriminate by UNION, INTERSECT and DIFFERENCE? thanks again for sharing RE: Set theory program for hp prime? - matalog - 09-30-2022 04:17 PM (09-30-2022 03:57 PM)DrEureka Wrote:(09-30-2022 03:15 PM)matalog Wrote: Do you just mean the Venn diagrams?I'll check it out, thank you very much. yes from venn diagram This is a little more optimised, but there must be a much faster way of doing it: Code: EXPORT RQST() RE: Set theory program for hp prime? - matalog - 09-30-2022 05:57 PM The way I showed earlier is customisable. This will do a very similar thing, just less customisable, but much, much faster. Code: EXPORT RQST() |