Skip to main content

Questions tagged [algorithm]

Questions about algorithms used or which might be used to implement a procedure known by name or loosely but not in detail. The subject of the question may be a procedure mentioned in the literature or a Mathematica built-in function

Filter by
Sorted by
Tagged with
2 votes
0 answers
120 views

I have a set of pairs of numbers {id, quantity}, which I store in the table tab; id takes discrete values, and ...
John Taylor's user avatar
  • 6,063
3 votes
1 answer
206 views

BoundingRegion is also known as enclosing region or circumscribed region. What algorithm(s) does BoundingRegion use? Below links ...
Ahamad's user avatar
  • 1
3 votes
0 answers
68 views

I'm working on implementing a difference-of-convex (DC) decomposition for nonconvex polynomials, following the algebraic approach described in Georgina Hall's thesis "Optimization over ...
Tuong Nguyen Minh's user avatar
17 votes
3 answers
1k views

Given the definition: The frontier of Brownian motion is the boundary of the unbounded component of the complement of Brownian motion. Graphically, the frontier is in red: How can one isolate the ...
Sofista 137's user avatar
0 votes
0 answers
190 views

Is there any way to fix or revise this code to find the EXACT optimal bound, and could anyone help find the EXACT optimal bound? Thanks. ...
Venus's user avatar
  • 1
1 vote
1 answer
94 views

Apply an equation based on two sets with different indexes Simple example If I have the following elements in the form of two sets with different indexes: $m=\{m_1,m_2,m_3,m_4,m_5\}=\{1,2,2,2,1\}$ $p=\...
Emad kareem's user avatar
  • 1,185
9 votes
8 answers
905 views

I want to use the numerical approximation of the integral of a function given a list of data: $$\int_a^bf(x)dx\approx\sum_{k=1}^N\frac{f(x_{k})+f(x_{k-1})}{2}(x_{k}-x_{k-1}),$$ where $f(x_0)=f(a)$ and ...
Patrick El Pollo's user avatar
3 votes
2 answers
744 views

there is a question: " If a bottle of soda costs \$1 and you can exchange two empty bottles for one soda, how many sodas can you drink with \$20 " ...
我心永恒's user avatar
  • 1,630
1 vote
0 answers
110 views

If we have the following sets and we need to apply the Sum of disjoint product property to them, as in the following example: Take: $$P_1=\{x_1 x_4\}$$ $$P_2=\{x_2 x_5\}$$ $$P_3=\{x_1 x_3 x_5\}$$ <...
Emad kareem's user avatar
  • 1,185
1 vote
1 answer
80 views

Consider the following two expressions: f[x_,y_] := (1+x) g[x_,y_] := (1+x*y^2) x,y are bounded in a unit hypercube. (Ignore ...
BabaYaga's user avatar
  • 1,957
10 votes
5 answers
1k views

I am looking for an efficient way of getting 60 to 80 samples of an arbitrary f(x) such that the distance between adjacent samples are approximately equal. My first attempt is based on a first order ...
Ted Ersek's user avatar
  • 7,174
2 votes
1 answer
183 views

Suppose we have some list of natural numbers $\{ 1, 2, \dots, N \}$ and each natural number $i$ has a 'weight' $w_i$. I would like to generate the all the integer partitions which satisfy the ...
MathPhysPlague's user avatar
5 votes
2 answers
300 views

I have been struggling with the following problem. Given: the coordinates of a bunch of boxes/rectangles (in the form {xmin,ymin,xmax,ymax}) aligned with the x-y ...
Fraccalo's user avatar
  • 6,137
5 votes
4 answers
501 views

1. Problem statement In accordance with the standard definitions the inbuilt MovingAverage ...
eldo's user avatar
  • 84.7k
5 votes
2 answers
255 views

Example data list = {Missing[], Missing[], 100., 200., Missing[], Missing[], 250., 210., Missing[]}; With downloaded data I often have the situation that there are ...
eldo's user avatar
  • 84.7k
5 votes
5 answers
696 views

I want to cross-tabulate football games over several years. Setting up example pairings: Please note that there can be up to 20 clubs and a couple of thousand matches! ...
eldo's user avatar
  • 84.7k
10 votes
9 answers
772 views

I want to partition an array composed of 1s, 2s and 3s in such a way that, going from left ...
eldo's user avatar
  • 84.7k
7 votes
6 answers
483 views

My request is a follow-up on this question: Replacing duplicates instead of deleting them What if we want to replace duplicated values not with a single value but with newly created values distinct ...
eldo's user avatar
  • 84.7k
4 votes
2 answers
212 views

I would like to be able to extract terms that contain a symbol expression and leave the special function alone. I have a list: ...
Mariusz Iwaniuk's user avatar
1 vote
0 answers
168 views

I know how to solve set of linear equations using Solve, or by hand of course. However, my current problem requires me to solve the equations in a specific order, ...
Lelouch's user avatar
  • 555
1 vote
1 answer
68 views

I'm new to Mathematica and I'm stuck on this piece of code. The code is supposed to let the user choose how many inequalities (in a number between 1 and 5) they want to be evaluated. ...
Gbekss's user avatar
  • 11
3 votes
1 answer
250 views

It all starts with the following system of equations that I can't solve by hand: ...
user avatar
5 votes
1 answer
137 views

Weighting matrices appear in the statistical design of experiments (Weighting Matrices and Statistical Design of Experiments. A weighting matrix is a generalization of Hadamard matrices, e.g., ...
Craig Carter's user avatar
  • 7,522
2 votes
2 answers
266 views

I've recently been very interested in the wonderfully complex world of Euler sums, i.e. (convergent) infinite sums that, roughly speaking, consist of some rational polynomial combination of ...
TheOutZ's user avatar
  • 225
2 votes
3 answers
211 views

Let $X$ be a metric space and $T:X\rightarrow X$ be a function. A point $x\in X$ is called a fixed point of $T$ if $x=Tx$. For example, if $X=[0,1]$ and $Tx=\frac{x}{2}$ then $T$ has a unique fixed ...
Junaid Ahmad's user avatar

1
2 3 4 5
8