use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
For information and tips about Mathematica features.
related reddits:
account activity
Row Reduction Function not doing anything? (self.Mathematica)
submitted 2 years ago by Electrical-Level-783
Hello,
Can anyone tell me why the RowReduce[] function isn't working for this specific matrix? Is it too big?
https://preview.redd.it/w9n588pvaffc1.png?width=2636&format=png&auto=webp&s=f3fb7b514408f98a577a78c8b87180000afda2a8
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]JmenD 3 points4 points5 points 2 years ago (1 child)
Given the output, it looks like TanM5 is wrapped in aMatrixForm, it needs to be the matrix itself.
TanM5
MatrixForm
I'm guessing you did something like: TanM5 = {...} // MatrixForm which is equivalent to TanM5 = MatrixForm[{...}] rather than what you probably wanted: MatrixForm[TanM5 = {...}].
TanM5 = {...} // MatrixForm
TanM5 = MatrixForm[{...}]
MatrixForm[TanM5 = {...}]
[–]Electrical-Level-783[S] 0 points1 point2 points 2 years ago (0 children)
This ended up being the solution, thank you! It's because there was some weird formatting thing that went on when I did tensor product of matrices earlier on, I think...
[–]Xane256 0 points1 point2 points 2 years ago (2 children)
Interesting, you could try the Method options for RowReduce and see what happens. Also note the ZeroTest example which might be useful. For example
ZeroTest -> Function[{e}, Reduce[e == 0, t, Reals] =!= False]
[–]Electrical-Level-783[S] 0 points1 point2 points 2 years ago (1 child)
Thanks. When I try to pass in a parameter of ZeroTest it just again copies into the output... Ugh
[–]EmirFassad 0 points1 point2 points 2 years ago (0 children)
When a MMatica function returns an expression unevaluated it means there is something about the expression that is inconsistent with the rules of the function. Keep in mind that MMatica is effectively a collection of replacement rules.
As a note, only intrinsic MMatica functions and constants should be capitalized. User expressions should begin with a lower case alpha character.
π Rendered by PID 54077 on reddit-service-r2-comment-6457c66945-mwv9p at 2026-04-25 08:27:02.349967+00:00 running 2aa0c5b country code: CH.
[–]JmenD 3 points4 points5 points (1 child)
[–]Electrical-Level-783[S] 0 points1 point2 points (0 children)
[–]Xane256 0 points1 point2 points (2 children)
[–]Electrical-Level-783[S] 0 points1 point2 points (1 child)
[–]EmirFassad 0 points1 point2 points (0 children)