Timeline for Split expression into list of terms
Current License: CC BY-SA 4.0
Post Revisions
13 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Sep 6, 2022 at 11:31 | vote | accept | mwalth | ||
| Sep 2, 2022 at 23:11 | answer | added | Travis Bemrose | timeline score: 11 | |
| Feb 16, 2020 at 6:00 | history | tweeted | twitter.com/StackMma/status/1228922062644883456 | ||
| Feb 16, 2020 at 5:59 | history | became hot network question | |||
| Feb 15, 2020 at 23:17 | answer | added | kglr | timeline score: 16 | |
| Feb 15, 2020 at 23:09 | answer | added | MarcoB | timeline score: 5 | |
| Feb 15, 2020 at 23:03 | history | edited | MarcoB | CC BY-SA 4.0 |
Formatted code
|
| Feb 15, 2020 at 22:43 | answer | added | mgamer | timeline score: 2 | |
| Feb 15, 2020 at 22:22 | history | edited | mwalth | CC BY-SA 4.0 |
added 19 characters in body
|
| Feb 15, 2020 at 22:18 | comment | added | mwalth |
@Nasser Thank you for your reply. To clarify, I am using "term" to mean addend. I am finding that the ` List @@ expr ` similarly does not handle monomials correctly. Namely expr = a; List @@ expr returns just a rather than {a}.
|
|
| Feb 15, 2020 at 22:12 | comment | added | Nasser |
terms[a*b*c] but terms here are a and b and c. Unless you are using your own definition of what a term is. So you can use List @@ expr to obtain the terms. expr = a^2 + a^-2 + c; List @@ expr gives {1/a^2, a^2, c} and expr = a*b*c; List @@ expr gives {a, b, c} etc..
|
|
| Feb 15, 2020 at 21:55 | review | First posts | |||
| Feb 15, 2020 at 22:13 | |||||
| Feb 15, 2020 at 21:50 | history | asked | mwalth | CC BY-SA 4.0 |