My (unorthodox and somewhat rickety) note-taking gizmo uses Poisson's equation to classify (continuously) entries. Basically the note-taking gizmo is a graph. Nodes are given conceptual masses either through pagerank or betweenness centrality (i.e. either through how many random walks or how many shortest paths cross a node). Then we calculate a potential energy (gravity potential) if we by inverting the graph laplac…
Poisson's Equation
41–50 of 167 posts
Re: Poisson's Equation
#42Sorry but can there be more context to why it is a powerful tool?
This is a typical issue with HN posts. Some poor soul wrote a somewhat competent and maybe even lengthy blog post / article about something they really care about and are knowledgeable about. It may be directed at a specific audience, or maybe just screaming into the void to record down some insight they had for themselves to read again later, or similar. And they use a more-than-necessary general title like "the bes…
Re: Poisson's Equation
#43Sorry but can there be more context to why it is a powerful tool?
This is a typical issue with HN posts. Some poor soul wrote a somewhat competent and maybe even lengthy blog post / article about something they really care about and are knowledgeable about. It may be directed at a specific audience, or maybe just screaming into the void to record down some insight they had for themselves to read again later, or similar. And they use a more-than-necessary general title like "the bes…
Re: Poisson's Equation
#44I very much appreciate this sort of post.
Re: Poisson's Equation
#45Earlier quoted context omitted.
Wait, how does this work? I'm really rusty, what would the f, A and b correspond to here?
It's the common way to solve a linear system in octave, matlab and julia. You have an invertible square matrix A, a vector b of the same dimension, and you want to find a vector x such that "A*x=b". Then you write "x=A\b", which is like "x=A^(-1)*b" but does not get to compute the full inverse matrix (which is useless).
Re: Poisson's Equation
#46Like the transition from the elegant, 5-character Laplace equation to the relatively verbose and complex numerical Julia solver, there is an additional and necessary step in making the numerical solution further scalable with present technology. In particular, the notion that the computational boundaries map nicely to the physical boundaries must be thrown out, because now we must respect the layer of "virtual boundaries" between the partitions.
Re: Poisson's Equation
#47Earlier quoted context omitted.
It's the common way to solve a linear system in octave, matlab and julia. You have an invertible square matrix A, a vector b of the same dimension, and you want to find a vector x such that "A*x=b". Then you write "x=A\b", which is like "x=A^(-1)*b" but does not get to compute the full inverse matrix (which is useless).
Don’t forget APL. I can’t say for sure but I imagine this \ operator came from there.
Re: Poisson's Equation
#48Sorry but can there be more context to why it is a powerful tool?
It is easier to study from a theoretical point of view (easier that the heat or the wave equation: [1], Ch. 2), and it's easier to implement a solving method. When you are learning the finite element method, this is one of the first examples that people use to test if they got the right implementation. Now, I wonder if the author regards it important in his particular area (aerospace engineering), I'm new to the fiel…
Re: Poisson's Equation
#49Earlier quoted context omitted.
Can you link to context for this? I learned both in linear algebra, so it seems like either would be just as 'expected'.
Here's a concrete example. The first matrix in the post is f = [[1, 1, 1], [1, 1, 1], [1, 1, 1]]. In linear algebra, we would interpret this as a linear map. A true equation would be f([1, 2, 3]^T) = [6, 6, 6]^T (where I'm using ^T to mean "transpose to a column vector"). But here, the author means f(1, 2) = 1, i.e. the (1,2) coordinate of the matrix is 1.