rzeta0
rzeta0
The following sets up an equation $sin(x)=0$ `eq = sympy.Eq(sympy.sin(x), 0)` The following asks simpy's solveset solver to solve this equation. `sympy.solveset(eq, x)` The result is: `{2nπ∣n∈Z}∪{2nπ+π∣n∈Z}` This could be...
I am new to modern web development so I am carefully following the instructions at the "[Getting Started](https://editorjs.io/getting-started/)" page. **Context** I am using a python Flask web application server which...
I am writing up my own attempts here: https://analysis-solutions.blogspot.com/p/terence-taos-analysis-i.html I am a beginner and some of my solutions will likely be wrong - but you might be able to accelerate...
You state "This statement is not true when (A = ∅) ∨ (B = ∅)." However, the statement is valid when (A = ∅) ∧ (B = ∅).
For exercise 3.4.2 you state that [0,1] is not a subset of [-1,1]. But it is? This looks like a typo as I think your logic is valid overall.
As far as I can see the current code is stored in the URL. I don't believe this will scale to medium-to-longer code. The web service for prolog https://swish.swi-prolog.org doesn't...
I'm aware that some of the tactics in this course are specifically created by you to aid learning - thank you! I'm trying to create a small task and proof...
### Increasing access I have over 5 years experience teaching young coders (age 7-17) and adults who have never coded before (eg artists) to code with p5js. I learned about...
The prose uses variables `x` and `t` but the sample code uses `a` and `t`. I think this is a typo. (confused me for half an hour - i'm a...
I believe the starter code for example 2.4.4 would benefit from 2 more focussing dots: ``` example {a b : ℝ} (h1 : a ^ 2 + b ^ 2...