All Questions
58,638 questions
-2
votes
0answers
13 views
how can i solve this coupled diffrential equation?
![this is a coupled 1st order differential equation plz solve this by using mathematica]1
0
votes
0answers
20 views
How to use Solve properly
I'm attempting to solve the following system of equations for k and $\kappa$ $$\mu\epsilon\omega^2=k^2-\kappa^2$$ $$\mu\sigma\omega=2k\kappa$$ but when I type into Mathematica
...
0
votes
0answers
8 views
ScrollPosition Synchronization
Two separate Panes. Pane-1 with vertical scroll bars and Pane-2 no scroll bars. Need to sync the scrolling between them. When scrolling Pane-1 vertically, need to have pane 2 automatically scroll to ...
2
votes
1answer
13 views
Not sure how to set up the Laplacian/Poisson Equation
As stated, I am having trouble trying to set up a Laplacian/Poisson Equation. I have boundary conditions with this too, and I've tried using the DirichletCondition function, but I don't know what I'm ...
0
votes
1answer
29 views
using Apply to get iterated Sum
Suppose I want to sum a function, $f(\{m_a\})$, of several variables, $m_a$, $a=1,..,n$, which run over ranges, $1,...,k[[a]]$, however, I do not know $n$ in advance. I thought I could do this using `...
1
vote
1answer
14 views
Defining a differential operator that acts on a non-commutative basis
Given a non-commutative basis ${x_0,x_1,x_2}$ I'd like to define a differential operator that acts as so
$$ \Delta_i (\sum_{n=0}^\infty c_n x_i^n) = \sum_{n=1}^\infty c_n x_i^{n-1}, \quad \Delta_i ...
8
votes
3answers
398 views
How Create a list of the first 10,000 digits of Pi and sum it?
I need help for a problem I m having trouble with.
I need to create a list with the first 10'000 digits of Pi and sum the digits 259 to 7233.
I managed to create a list with the following code:
list1 ...
3
votes
1answer
23 views
How to set “SymbolContextStyles” for `$Context` symbols?
How to change the font colour of symbols defined in the current context (e.g. $Context) from black to some other colour, say purple?
There is a ...
1
vote
2answers
29 views
Replacement rule for terms that are separated by operators
My main problem is how one can create a "transcending between operators rule" in the same term according to the minimal example bellow.
Suppose I need to perform a replacement of the form
...
1
vote
0answers
17 views
How can I efficiently call an external Python script that needs to run continuously?
I am writing a Mathematica program that tries to run 100+ Python programs, via StartProcess[], continuously. It seems to work when I run < 100 programs, but, at ...
0
votes
0answers
20 views
Manipulate and Graphing Multiple Functions on the same Axis [duplicate]
Can Anyone help me out graph both function and its tangent line on the same xy axes, please?
...
2
votes
1answer
27 views
Distance between axes and tick labels
A similar question has been axed before in the context of a Framed plot: see here. My plot is unframed so I wasn't able to apply the answer to the other question.
I create a histogram with the code ...
3
votes
1answer
31 views
Problems with continously varying Tube radius
Problem
I am trying to plot Tubes made from the Tube function with varying radii. At one point there is a discontinuity and the radius of the tube is much ...
1
vote
1answer
64 views
Why are there local variable conflicts in my recursive function definition?
Sorry to post a long piece of code. There are two places in here where I Print[] 'path2' when the count == 984, because for some reason, that list is getting ...
0
votes
1answer
28 views
Attempting PDE with inequality in boundary condition
I am attempting to solve the equation below, which requires v[y,0]==0 for all y greater than 0. I have followed the /; approach ...