Comment Re:Useful for targeted tasks (Score 1) 247
I've used AI for two tasks where I found it very useful, and some very minor ones as well.
1) I had to write some code to invert a matrix in C. I knew the code was out there, but Google's search is so polluted today I could not find it. ChatGPT immediately returned working code. I noticed it did not calculate the determinant, so I asked it for that, and it modified the code to do so. As I say, I know that code is out there somewhere in a book, probably a dozen books, but I can no longer find older topics because the search engines are so polluted today. So yeah, this was extremely useful.
Just a note, from someone who has done a lot of computational numerical analysis...if you are inverting a matrix, you are usually doing something inefficient and numerically unstable. In small dimension counts, that could be fine, but keep it in mind.