User Portlet User Portlet

Duncan Pettengill
Discussions
Hello, as I understand, you've consulted https://chat.openai.com/ with some Wolfram Language questions. This is a chat bot with no specific knowledge of the Wolfram Language and no affiliation with Wolfram Research. If you would like to provide...
Hello William, when you say you "turned to OpenAI to ask", am I correct in assuming you mean you went to https://chat.openai.com/ ? This is a chat bot with no specific knowledge of the Wolfram Language and no affiliation with Wolfram Research....
Given that the Bitcoin price has historically been determined by market manipulation (wash trading at Mt Gox, issuance of unbacked Tethers by BitFinex, the current implosion of Celsius for issuance of unbacked tokens *and* wash trading), the modeling...
In most standard complex analysis notebooks, you will see diagrams illustrating how a particular section of the complex plane is mapped to another by a function. A number of examples are given at ...
The 'lottery' in question is quite simple. The miners take as input 1. The current state of the blockchain 2. Their own address (so that rewards can be awarded to them if they 'win') (and this is the "lottery" part of it) 3. A...
Okay, if you specifically want, not just rational numbers, but successively better rational approximations to Sqrt[2], then you could use Table[Rationalize[N[Sqrt[2], n], 0], {n, 1, 20}] To break this down N[Sqrt[2], n] returns a...
To clarify, the presence of certain words in text cells causes input cells in the same notebook to exhibit this behavior.
In response to the large number of questions on this topic on the Wolfram Community, on StackExchange, and through Wolfram Technical Support, we have published a support article describing these changes, and their rationale, at ...
ImageContents returns its results as a [Dataset][1], which is essentially a list of nested associations. To query part of a list, you use the Part[] syntax, and to query part of an association, you can use the name of the key you want to query. ...
Hello Michael. Mathematica comes with the package "Notation", which allows you to define custom syntax rules and symbols. If you put your expression inside the function Symbolize[], you can treat basically any expression as an atomic symbol. ...