Exploring the Trend of Exploiting the Trend​

Here we survey applications of local trends across the scientific literature and review emerging enhancements of their calculations. We suggest that the new Calculus operator discussed in [864] is a natural step toward further improving such estimates. In that sense, this work is an introduction to Semi-discrete Calculus. Note: for a better reading experience, consider reading this post on a desktop.

Previous Work: Trendland

It turns out that in the past two decades, multidisciplinary researchers have been increasingly exploiting functions’ trends. We refer to this set of applications as “Trendland.” As embodied by the derivative sign, the instantaneous trend of change is an integral part of these suggested systems, algorithms, theorems, didactic tools, and natural phenomena. Feel free to browse through selected examples in the following interactive tree:

Machine Learning Optimization

While the gradient is the fundamental concept in many optimization algorithms, it turns out that its sign is an essential stand-alone component in some of them. Recently several papers pointed out this trend in the literature and surveyed several algorithms that incorporate the derivative sign while analyzing their mathematical and convergence properties ([976, 671]). Let us study examples of optimization algorithms in which the derivative’s sign was found lucrative to researchers due to its relative stability.
Researchers often treat RProp ([802]) as a basis for other optimization approaches relying on the derivative sign. Although it originated in 1993, researchers still cite Riedmiller and Braun’s approach as one of the recommended optimization frameworks, alongside its modern alternatives - even when it comes to deep learning optimization. For example, [92] recommends it, and [978] states that this unique formalization allows the gradient method to overcome some cost curvatures that we may not solve quickly with today’s dominant methods. This two-decade-old method may be worth some further study these days. We can formulate the step in RProp as follows: $$\theta^{t+1}=\theta^{t}-\eta_{+}I\left(sgn\left(\frac{\partial L}{\partial\theta}\left(\theta^{t}\right)\right)>0\right)+\eta_{-}I\left(sgn\left(\frac{\partial L}{\partial\theta}\left(\theta^{t}\right)\right) < 0\right),$$Where $I(\cdot)$ is the indicator function. Based on the gradient sign, we decide to proceed with a growing or shrinking step size in each iteration. In other words, in case the optimizee trends upwards, then to reach the minimum, our step should be of size $\eta^{+}$ to the left, and vice versa. The steps' sizes vary exponentially, allowing for efficient exploration and a binary search based exploitation. Let us gain some intuition regarding this algorithm's efficiency. We can think of optimization as a prediction task in which we impose an intelligent guess of a lucrative step towards an optimum. Intuitively, the magnitude of the gradient seems like a reasonable consideration. However, often – for example, in cases where the function's rate of change plunges – a simple binary search may land on the optimum faster. Another way to think about it is that the gradient's magnitude might 'overfit' the optimizer's prediction relative to the sign alone. In other words, as a function increases, a step in the negative direction is guaranteed to promote us towards a local minimum. But as for a correct way to rely on the gradient's magnitude for the step size, that's already speculation that is often inaccurate and gives rise to ever-growing scientific debate. Moreover, in [92], RProp mitigates the challenge of vanishing gradients, as it overlooks their magnitude. However, RProp entails a considerable challenge. It renders the optimization method discontinuous upon conducting SGD. For example, imagine that some mini-batches dictate a gradual deterioration of the gradient. Suppose we proceed with a mini-batch whose gradient cancels the previous ones. The researcher would expect the steps themselves to balance out and that the optimization process would end up where it began, which is the case in Stochastic Gradient Descent methods. In contrast, the described case renders RProp proceed without canceling out the accumulated gradients.
Other optimization algorithms leverage the gradient’s sign only implicitly, such as are AdaGrad ([611]), AdaDelta ([1027]) and RMSProp ([435]). In those algorithms, we divide by the weighted root of the mean squares of the previous gradients. We can think of this standardization as a generalization of RProp in the following sense. It considers the sign of the current gradient while doing it smoothly relative to the process thus far. It is evident when we restrict the window size to include the most recent gradient solely. The gradient’s magnitude in the numerator then cancels out with its absolute value in the denominator, resulting in the gradient’s sign.
On top of these algorithms that apply the derivative sign implicitly, an emerging family of ML algorithms uses this operator explicitly. They are referred to in the literature as the “Sign” algorithms. Thus, researchers often refer to RProp as signed gradient descent, SignSGD is a version of stochastic gradient descent that applies its sign, SignAdam is the analog of Adam, and so on. More details on selected algorithms follow:
    • [462] further improves the RProp algorithm, which relies on the loss function's local trends.
    • [43] proposes three conditions that any algorithm that employs information of the sign of partial derivative should fulfill to update the weights.
    • Quickprop’s principle in [816] is to look at the evolution of the sign of the gradient with respect to one parameter for successive iterations: if it is the same, we follow the gradient descent direction; if it is different, a minimum is likely to exist in between the preceding and current values, and we expect to be in a situation where the second-order approximation is reasonable.
    • [235] introduces the normalized and signed gradient descent flows associated with a differentiable function. The flows characterize their convergence properties via nonsmooth stability analysis. They also identify general conditions under which these flows attain the set of critical points of the function in a finite time. To do this, they extend results on the stability and convergence properties of general nonsmooth dynamical systems via locally Lipschitz and regular Lyapunov functions.
    • [1022, 778, 679] discuss the pros and cons of RProp and compare several approaches for backpropagation that leverage the derivative sign. Among them are "Sign Changes," "Delta-bar-delta," "RProp," "SuperSAB," and "QuickProp."
    • A key challenge in applying model-based Reinforcement Learning and optimal control methods to complex dynamical systems, such as those arising in many robotics tasks, is the difficulty of obtaining an accurate system model. These algorithms perform very well when they are given or can learn an accurate dynamics model. Still, often it is very challenging to build an accurate model by any means: effects such as hidden or incomplete state, dynamic or unknown system elements, and other effects, can render the modeling task very difficult. [538] presents methods for dealing with such situations by proposing algorithms that can achieve good performance on control tasks even using only inaccurate system models. In particular, one of the algorithmic contributions that exploit inaccurate system models is an approximate policy gradient method, based on an approximation called the Signed Derivative, that can perform well provided only that the sign of specific model derivative terms are known.
    • The algorithm proposed in [790] solves stochastic convex optimization using only noisy gradient signs by repeatedly performing Active Learning, achieves optimal rates, and is adaptive to all unknown convexity and smoothness parameters.
    • The algorithm in [1029] utilizes a greedy coordinate ascent algorithm that maximizes the average margin over all training examples, leveraging the derivative sign in an interval.
    • [364] introduces GRL, Gradient reverse layer: an identity transformation in forward propagation that changes the sign of the gradient in backward propagation.
    • [1023] mentions that we update the weights only using sign information of the classical backpropagation algorithm in the Manhattan Rule training.
    • Equations 3.4, 3.5 in [982] state that the partial derivatives of $y'$ equal the sign of the derivatives of $w$ and $x$, respectively.
    • Parallel implementations of stochastic gradient descent (SGD) have received significant research attention, thanks to its excellent scalability properties. A fundamental barrier when parallelizing SGD is the high bandwidth cost of communicating gradient updates between nodes; consequently, researchers proposed several lossy compression heuristics, by which nodes only communicate quantized gradients. Although effective in practice, these heuristics do not always converge. In [32], the authors propose Quantized SGD (QSGD), a family of compression schemes with convergence guarantees and good practical performance.
    • The "ternarize" operation in Eq. 1 of [991] splits the gradient to its sign and magnitude ingredients. The parameter in TernGrad is upgraded in turn by Eq. 8, where the gradient sign is applied. Theorem 1 then proves a convergence property of this gradient sign-based algorithm.
    • Backpropagation provides a method for telling each layer how to improve the loss. Conversely, in hard-threshold networks, target propagation offers a technique for telling each layer how to adjust its outputs to enhance the following layer's loss. While gradients cannot propagate through hard-threshold units, one may still compute the derivatives within a layer. An effective and efficient heuristic for setting the target activation layer is to use the (negative) sign of the partial derivative of the next layer's loss. [352] illustrates it.
    • Training large neural networks require distributing learning across multiple workers, where the cost of communicating gradients can be a significant bottleneck. signSGD alleviates this problem by transmitting just the sign of each minibatch stochastic gradient. [113] proves that it can get the best of both worlds: compressed gradients and SGD-level convergence rate. The relative $\ell_{1}$ or $\ell_{2}$ geometry of gradients, noise, and curvature informs whether signSGD or SGD is theoretically better suited to a particular problem. On the practical side, the authors find that the momentum counterpart of signSGD can match the accuracy and convergence speed of ADAM on deep Imagenet models.
    • [70] interprets ADAM as a combination of two aspects: for each weight, the update direction is determined by the sign of stochastic gradients, whereas an estimate of their relative variance determines the update magnitude. They disentangle these two aspects and analyze them in isolation, gaining insight into the mechanisms underlying ADAM.
    • The algorithm in [1035] is based on the derivative sign of the backpropagation error
    • [112] further studies the base theoretical properties of this simple yet powerful SignSGD. The authors establish convergence rates for signSGD on general non-convex functions under transparent conditions. They show that the rate of signSGD to reach first-order critical points matches that of SGD in terms of the number of stochastic gradient calls but loses out by roughly a linear factor in the dimension for general non-convex functions.
    • [984] explores the usage of a highly low-precision gradient descent algorithm called SignSGD. The original algorithm still requires complete gradient computation and therefore does not save energy. The authors created a novel "predictive" variant to obtain the sign without computing the full gradient via low-cost, bit-level prediction. Combined with a mixed-precision design, it decreases both computation and data movement costs.
    • The aim of [671] is to study the properties of the sign gradient descent algorithms involving the sign of the gradient instead of the gradient itself and first introduced in the RProp algorithm. This article provides two convergence results for local optimization, the first one for nominal systems without uncertainty and a second one for uncertainties. New sign gradient descent algorithms, including the dichotomy algorithm DICHO are applied on several examples to show their effectiveness in terms of speed of convergence. As a novelty, the sign gradient descent algorithms can converge in practice towards other minima than the closest minimum of the initial condition making these algorithms suitable for global optimization as a new metaheuristic method.
    • [976] applies the sign operation of stochastic gradients (as in sign-based methods such as signSGD) into ADAM, called signADAM. It is easy to implement and can speed up the training of various deep neural networks. From a computational point of view, choosing the sign operation is appealing for the following reasons:
      • Tasks based on deep learning, such as image classification, usually have a large amount of training data. "Training" on such a dataset may take a week, even a month, to shrink calculation in every step, enhancing efficiency.
      • The algorithm can induce sparsity of gradients by not updating some gradients. One of the ADAM's drawbacks is to ignore these gradients by using the exponential average algorithm. SignAdam++ can prevent this issue by giving small gradients shallow confidence (e.g., $0$).
      • Nowadays, learning from samples in deep learning is always stochastic due to the massive amount of data and models. The confidence of some gradients produced by loss functions and examples should be small. From the perspective of maximum entropy theory, each feature should have the equal right to make efforts in deep neural networks. This method will make the models work well.
      • Although the incorrect samples cause large gradients, large gradients may hurt models' generalization and learning ability. signADAM++ addresses this issue by using moving average after applying confidence for unprocessed gradients, and an adaptive confidence for some large gradients. These can give models a better performance.
    • In [105], during a single training epoch, the signs of the partial derivatives of the loss with respect to a single parameter are distributed almost uniformly over the mini-batches. The authors propose an optimization routine, where a moving average history of the sign of each derivative is maintained. They use this history to classify new derivatives as "exploratory" if they disagree with the history's sign. Conversely, they classify the new derivatives as "exploiting" if they agree with the history's sign.
    • As illustrated in [503], sign changes in the directional derivative along a search direction may appear and disappear stochastically as the oracle updates the mini-batches. In addition to the sign change of each mini-batch loss function, additional sampling-induced sign changes may manifest along a search direction. It occurs when the oracle switches between a negative and positive directional derivative for essentially the same step along a search direction.
    • [779] considers only the signs of gradients would amplify those small noisy gradients making the conformity score not useful. Instead, CProp measures the conformity by asking a question" Does the past gradients conform enough to show a clear sign, positive or negative collectively?"
    • [202] motivates the method, Gradient Sign Dropout (GradDrop), by noting that when multiple gradient values try to update the same scalar within a deep network, conflicts arise through differences in sign between the gradient values. Following these gradients blindly leads to gradient tugs-of-war and to critical points where constituent gradients can still be significant (and thus, some tasks perform poorly). They demand that all gradient updates are pure in sign at every update position to alleviate this issue. Given a list of (possibly) conflicting gradient values, they algorithmically select one sign (positive or negative) based on the distribution of gradient values and mask out all gradient values of the opposite sign.
    • [494] applies directional derivative signs strategically placed in the hyperparameter search space to seek a more complex model than the one obtained with small data.
    • [14] addresses whether one can generate an imperceptible gradient noise to fool the deep neural networks? For this, the authors analyzed the role of the sign function in the gradient attack. Further, the role of the direction of the gradient for image manipulation is studied. When one manipulates an image in the positive direction of the gradient, they generate an adversarial image. On the other hand, if they utilize the opposite direction of the gradient for image manipulation, one observes a reduction in the classification error rate of the CNN model.
    • In [612], the signSGD flow, which is the limit of Adam when taking the learning rate to 0 while keeping the momentum parameters fixed, is used to explain the fast initial convergence.
    • Sign-based optimization methods have become popular in machine learning also due to their favorable communication cost in distributed optimization and their surprisingly good performance in neural network training. [71] finds sign-based methods to be preferable over gradient descent if the following conditions are met:
      • the Hessian is to some degree concentrated on its diagonal
      • Its maximal eigenvalue is much larger than the average eigenvalue.
      Both properties are common in deep networks.
    • Both workers and the central server in DropSignSGD ([573]) are allowed to further reduce their communication amounts by partially dropping the gradient signs at random.
    • [825] analyzes sign-based methods for non-convex optimization in three key settings: Standard single node, parallel with shared data, and distributed with partitioned data. Single machine cases generalize the previous analysis of signSGD, relying on intuitive bounds on success probabilities and allowing even biased estimators. Furthermore, they extend the analysis to parallel settings within a parameter server framework, where exponentially fast noise reduction is guaranteed with respect to the number of nodes, maintaining $1$-bit compression in both directions and using small mini-batch sizes. Next, they identify a fundamental issue with signSGD to converge in a distributed environment. To resolve this issue, they propose a new sign-based method, Stochastic Sign Descent with Momentum (SSDM), which converges under standard bounded variance assumption with the optimal asymptotic rate.
    • Due to its simplicity, the sign gradient descent is popular among memristive neuromorphic systems. When implementing it with memristor synapses, as in [279], the LB sends a single UP (or DOWN) pulse to instruct an increase (or decrease) of the synaptic weights. Hence, a single SET pulse is applied to the PCM device, determined by the gradient sign. However, the effective value of $\delta$ is not constant due to the WRITE noise and is not symmetric because SET operation in PCM is gradual, whereas RESET is abrupt.
    • [594] investigates faster convergence for a variant of sign-based gradient descent, called scaled signSGD, in three cases:
      • The objective function is firmly convex
      • The objective function is non-convex but satisfies the Polyak-Łojasiewicz (PL) inequality
      • The gradient is stochastic, called scaled signSGD in this case.
    • In [1048], bases the proof outline of the main results for Adam on the fact that Adam behaves similarly to sign gradient descent when using sufficiently small step size or the moving average parameters $\beta_{1}$, $\beta_{2}$ are nearly zero. It motivated the authors to study the optimization behavior of signSGD and then extend it to Adam using their similarities.

Adversarial Learning

    • [392] applies the sign of loss function's derivative with respect to the input for a rapid generation of adversarial examples in the "Fast Gradient Sign" algorithm.
    • One of the simplest methods to generate adversarial images (FGSM) is motivated by linearizing the cost function and solving for the perturbation that maximizes the cost subject to an $\ell_{\infty}$ constraint. Based on the gradient sign, one may accomplish it in closed form for the cost of one call to back-propagation. In [558], it is referred to as "fast" because it does not require an iterative procedure to compute adversarial examples and thus is much faster than other considered methods. The authors introduce a straightforward way to extend the "fast" method — they apply it multiple times with small step size and clip pixel values of intermediate results after each step to ensure that they are in an $\varepsilon$-neighbourhood of the original image.
    • [663] adds a perturbation to Neural networks to fool them with the DeepFool algorithm. The authors used the sign of the derivative in the iterative update rule with the supremum norm. They also apply the fast gradient sign method, wherein the absence of general rules to choose the parameter $\varepsilon$, they chose the smallest $\varepsilon$ such that $90\%$ of the data are misclassified after perturbation.
    • [734]crafts an adversarial sequence crafting for the LSTM model. The algorithm iteratively modifies words in the input sentence to produce an adversarial sequence. The LSTM architecture then misclassifies it. The optimization step applies the sign of the gradient $J$.
    • [937] visualizes the “gradient-masking” effect by plotting the loss of $v_{adv}^{3}$ on examples $x^{\ast}=x+\varepsilon_{1}\cdot g+\varepsilon_{2}\cdot g^{\bot}$, where $g$ is the signed gradient of model $v_{adv}^{3}$ and $g^{\bot}$ is assigned vector orthogonal to $g$. In Section 4.1, they chose $g^{\bot}$ to be the signed gradient of another Inception model, from which adversarial examples transfer to $v_{adv}^{3}$. In appendix E, properties regarding the gradient-aligned adversarial subspaces for the $\ell_{\infty}$ norm utilize the signed gradient (lemmas 6, 7).
    • [616] lays the foundation of a widespread attack method - the PGD (projected gradient descent) attack described in section 2.1. This method uses just the sign of the gradient. Since its discovery, the superiority of signed gradients to raw gradients for producing adversarial examples has puzzled the robustness community. Still, these strong gradient signal fluctuations could help the attack escape suboptimal solutions with a low gradient.
    • The sign of the partial derivative of $J'$ in [613] is defined as a standalone operator in equation 6 and applied to solve the second problem using a bounded update approach. In turn, lemma 1 proves a bound on a number defined based on the derivative sign.
    • Selecting $\mu=0$ in Eq. 6 of [295] yields, in turn, the I-FGSM, with the gradient sign as the update direction. Otherwise, the sign is applied to an approximation of the gradient.
    • The fast gradient sign method is tweaked in several aspects. One of them is that the algorithm in [834] performs backward pass using the classification loss function. Each gradient accumulation layer Gc stores the gradient signal backpropagated to that layer via its sign (Eq. 5 there).
    • [1004] surveys the performance of extensions of the fast gradient sign method. It, in turn, suggests the method $M-DI^{2}-FGSM$, whose special cases are $DI^{2}-FGSM$ and $MI-FGSM$. All of them leverage the gradient sign for some constellations of parameters.
    • Cheng et al.'s approach for hard-label black-box attack models hard-label attack as an optimization problem where the objective function can be evaluated by binary search with additional model queries. Thereby, a zeroth-order optimization algorithm can be applied. In [206], the authors adopt the same optimization formulation. Still, they propose to directly estimate the sign of gradient in any direction instead of the gradient itself, which benefits a single query. Using this single query oracle for retrieving sign of directional derivative, they develop a novel query-efficient Sign-OPT approach for a hard-label black-box attack.
    • Combined with the fast sign gradient method, [366] proposes the Patch-wise Iterative Fast Gradient Sign Method (PI-FGSM) to generate strongly transferable adversarial examples. The authors survey the development of the gradient sign-based attack method in section 3.1 there, and their algorithm also applies the loss function's gradient sign.
    • The adversarial bracketed exposure fusion-based attack in Eq. 6 of [208] is optimized with sign gradient descent (Eq. 9 there).
    • In [598], given a clean input image and a pre-trained DNN, Differential Evolution first derives a gradient sign population, children candidates compete with their parents using the corresponding perturbed inputs. Then, the authors perturbed the inputs with the approximate gradient signs.
    • In the proof of the proposition in [347], it is required to only look at the sign of the derivative of "$\alpha$" for some arbitrary perturbation $\Delta_{j}^{\ast}$. Then, because the crafting algorithm uses signed gradient descent (either Adam or SGD), the perturbations crafted using the online vs. non-online method will be identical.
    • For all attacks, [374] optimizes the adversarial perturbation through projected descent (PGD). The authors found Signed Adam, with a step size of $0.1$, a robust first-order optimization tool to this end. While perturbation bounds were weakly enforced in the original version by an additional penalty, the authors optimize the objective directly by projected (signed) gradient descent in line with other attacks. They find this to be at least equally effective. They implement specific adversarial training at training steps, starting from a randomly initialized perturbation and maximizing cross-entropy for five steps via signed descent. Further, they optimized the surrogate attacks via signed Adam descent with the same parameters described in the attack section.
    • The stronger the anti-adversary layer solver for Problem (2) in [30] is, the more robust $g$ is against all attacks. To that end, the anti-adversary layer solves Problem (2) with $K$ signed gradient descent iterations, zero initialization, and $L$ is the cross-entropy loss. Algorithm 1 there summarizes the forward pass of $g$.
    • [205] surveys derivatives of the fast gradient sign method for adversarial examples generation, as well as the sign-opt method.
    • [323] studies the impact of optimization methods such as sign gradient descent and proximal methods on adversarial robustness.
    • [367] suggests integrating the attack method into any gradient-based additive-perturbation attack methods, e.g., FGSM, BIM, MIFGSM. The authors use the sign gradient descent optimization with the step size $\lambda=\frac{\varepsilon}{T}$. $T$ denotes the iteration number, and they fix it as ten as a typical setup in adversarial attacks.
    • Algorithm 1 in [726] defines the adversarial direction in the Individual AGI based on the sign of the gradient of $f$.
Note that the “fast derivative sign” method has become so prevalent, that an analogous “derivative magnitude” method was introduced in [815], while emphasizing that it is the magnitude and not merely the sign that is being exploited.

Meta Machine Learning

    • [45] presents LSTMs that can learn to conduct Gradient Descent automatically. Their model learns how to learn: it builds a favorable optimization method per each domain separately and outperforms hand-crafted optimization algorithms such as Adam. The authors mention a crucial challenge in training the optimizers: different input coordinates can have different magnitudes. It can make training an optimizer difficult because neural networks naturally disregard small variations in input signals and concentrate on bigger input values. To tackle it, the authors decided to replace the gradients by two other features: $\left(\log\left|\nabla L\right|,sgn\left(\nabla L\right)\right)$. In other words, to overcome the instability of the gradient operator, they scaled it down exponentially to a positive number and added its sign.
    • This approach is adopted by [793] in their prominent MAML few-shot learning framework.

Neural Networks

    • Section 6.3 of [92] discusses supervised learning for recurrent networks. The difficulty of gradient computation in recurrent networks makes it necessary to employ algorithms that use only the gradient sign to update the weights. For example, the magnitudes of the backpropagated errors may vary significantly. For this reason, it is challenging to determine a constant learning rate for gradient descent that allows for both stable learning and fast convergence. Since the RProp algorithm does not use the magnitude of the gradient, it is not affected by very small or substantial gradients. Hence, it is advisable to combine this algorithm with BPTT. This training method for RNNs proved experimentally able to avoid the stability problems of fixed-rate gradient descent while at the same time being one of the most efficient optimization methods.
    • [263] partitions the State-space into regions with a unique derivative sign pattern. A qualitative abstraction yields a state transition graph that provides the discrete picture of continuous dynamics.
    • [832] proposed an explicitation method of gradual rules, which allows the extraction of rules starting from the ASP units. To build a MGR, the sign of the output's derivative is analyzed, among others.
    • Backpropagation methods such as SSAB, RPROP and GNFAM, that are characterized by using the derivative sign to increase or decrease the LR exponentially, are surveyed in [35]. It is also explained why they fail on a proposed texture task.
    • Failure modes 5 & 6 in [559] refer to scenarios where the SCANN function's derivative sign is positive or negative. It prevents the opposite of what was intended in output changes over input changes (for example, the output must increase if input increases). The safety argument for adhering to these bounds focuses upon assuring that the derivative sign (rule function gradient) as expressed by Eq. 50 there is limited during generalization and learning. The solution to this argument is that parameter $a_{i}\left(1\right)$ will always be positive to reflect increasing output (and negative to define decreasing output). In addition, the gradient, in any case, can be zero as a result of the saturation performed by the rule output bounds.
    • [86] defines a fine-grained partition of the state space which underlies a discrete abstraction preserving more substantial properties of the qualitative dynamics of the system, i.e., the derivative sign pattern.
    • Among the hand-chosen features in [998], the Normalized Decay describes the chance-corrected fraction of data that is decreasing or increasing based on the sign of the discrete derivative.
    • The lecture in [435] introduces the RMSProp algorithm. The gradient is divided by the (weighted) root of the mean squares of the gradients in the proceeding steps. One may view this standardization as a generalization of RProp in the following sense. It considers the sign of the current gradient smoothly with respect to the process thus far. It is evident as if we restrict the window size to include the most recent gradient solely. The gradient's magnitude in the numerator cancels out with its absolute value in the denominator, resulting in the gradient's sign.
    • The number of times a single neuron has a sign change in the derivative across the parameters serves as a crucial upper bound for exponential expressivity at the deep neural net studied in [770].
    • To identify whether a given data point $x$ is a critical sample, [51] searches for an adversarial example within a box of a given radius. To perform this search, the authors propose using Langevin dynamics applied to the fast gradient sign method as shown in algorithm 14. They refer to this method as Langevin adversarial sample search (LASS). While the FGSM search algorithm can get stuck at a point with zero gradients, LASS explores the box more thoroughly. Specifically, a problem with first-order gradient search methods (like FGSM) is that there might exist training points where the gradient is $0$, but with a large $2^{nd}$ derivative corresponding to a significant change in prediction in the neighborhood. The noise added by the LASS algorithm during the search enables escaping from such points.
    • [978] states that RProp's (signed gradient descent) unique formalization allows the gradient method to overcome some cost curvatures that may not be easily solved with today’s dominant methods, depending on the problem's geometry.
    • [455] introduces a method to train Quantized Neural Networks (QNNs) — neural networks with extremely low precision (e.g., $1$-bit) weights and activations at run-time. At train-time, the quantized weights and activations are used for computing the parameter gradients. QNNs drastically reduce memory size and accesses during the forward pass and replace most arithmetic operations with bit-wise operations. As a result, power consumption is expected to be drastically reduced.
    • [325] applies the sign of the loss function's gradient to prove theorem 16. It reflects in the update in algorithm 3.
    • As explained in [360], if the loss function's derivative is positive, then an increase or decrease in the weight increases or decreases the error, respectively. And vice versa if the derivative is negative.
    • The gradient sign of the dissimilarity function that measures the change between interpretations of two images in [379] is applied to iterative feature importance attacks.
    • [398] analyzes the sensitivity of the cause-and-effect relations. Hereto, we compute the first partial derivative of the regression function with respect to each input parameter. A significant value of the partial derivative indicates a considerable influence of the corresponding input parameter, i.e., small changes in the input will lead to substantial changes in the output. Furthermore, the sign of the partial derivative is essential. A positive partial derivative indicates that an increase in the input leads to a rise in output. A negative sign means that an increase in the input leads to a decrease in the output.
    • To overcome the vanishing gradient problem, [7] introduced a new anti-vanishing back-propagated learning algorithm called oriented stochastic loss descent (OSLD). OSLD updates a random-initialized parameter iteratively in the opposite direction of its partial derivative sign by a small positive random number, which is scaled by a tuned ratio of the model loss.
    • In [421], the backward gain w.r.t $w$ is $\beta=\frac{\partial y\prime}{\partial w}=\sigma x$ where $\sigma$ is the gain of the activation function $\sigma$. If input $x$ is negative or $\sigma$ is negative, $\beta$ is negative, and $A\beta$ becomes negative, which is unstable. To make the system stable for negative backward gain, the forward gain $A$ needs to be negative so that $A\beta$ becomes positive. The output of the backward function for negative $\beta$ can be expressed as (10). We can transfer the negative sign to the error e and keep $A$ positive. Since the negative sign is there because of the negative backward gain $\beta$, the sign can be replaced by the signum function as in (12). For negative backward gain, we can continue using positive forward gain with the error augmented by the sign of the backward gain. For positive backward gain, no negative sign is necessary. Thus (12) is consistent for both positive and negative values of $\beta$.

Federated Learning

    • The online learning algorithm in [416] uses an estimated sign of the derivative of the objective function, which gives a regret bound that is asymptotically equal to the case where the exact derivative is available.
    • Encrypting and decrypting all elements of the model gradients have several shortcomings. First, performing encryption on local clients is computationally extremely expensive, causing a big barrier for real-world applications since the distributed edge devices usually do not have abundant computational resources. Second, uploading model gradients in terms of ciphertext incur high communication costs. Finally, the first two issues will become computationally prohibitive when the model is large and complex, e.g., DNNs. To tackle the above challenges, [1045] introduces ternary gradient quantization (TernGrad) into their federated learning framework to drastically reduce computational and communication costs for encryption of DNNs. TernGrad compresses the original model gradients into ternary precision gradients with values $\in\left\{ -1,0,1\right\}$ as described in Eq. (13) there.
    • In the signed gradient scenario of [617], computing the gradient of the objective in (7) there involves finding the sign of the gradient with respect to $\left\{ w_{1},w_{2},\ldots,w_{N}\right\}$ instead of the full gradient, and the full gradient with respect to $\alpha$. It will be a function of a relatively much lesser dimensional information. The gradient with respect to the importance coefficients α does not depend on the neural network weights but depends on the discrepancy and the losses. It involves sending $O\left(N\right)$ parameters while the gradient with respect to neural network weights $w$ can potentially involve millions $\left(>O\left(N\right)\right)$ of parameters. The signed gradient of the objective function (7) with respect to device $k$’s weights includes the sign function within the summation, as in (9).
    • The algorithm in [754] conducts decentralized optimization in wireless device-to-device networks of pervasive devices such as sensors or 5G handsets. The signs of the stochastic gradient are used for descent steps.
    • Averaging masked gradients in [928] is equivalent to averaging the gradients directly when all the client gradients being considered are of the same sign.

Reinforcement Learning

    • The approximation in [539] is based on the intuition that it is often straightforward to guess the direction in which control inputs affect future state variables, even if we do not have an accurate system model.
    • The reward function, defined in Eq. 1 of [541], can be thought of as the sign of the discrete numerical derivative of the Intersection-over-Union (IoU) function.
    • The initial reward in [924] is defined as the sign of the discrete derivative of the probability function that predicts the video as belonging to a specific class across consecutive iterations.
    • While an optimal policy is deterministic (gradient ascent searches among all threshold policies), the gradient is discontinuous at such policies. Plain Gradient Ascent suffers from this problem. Therefore [630] suggests taking integer steps to explore just integer policies, calculate both one-sided gradients, and use them in the update step. In turn, the gradient sign is then used within this optimization method.
    • As shown in Algorithm 3 in [1033], when generating adversarial samples, the adversary computes the perturbation with $g_{i}=sgn\left(\frac{\partial J\left(G,y\right)}{\partial V}\right)$. $V$ is the feature matrix, each row of which describes instructions in a basic block $v_{i}$ of the graph $G$, and $y$ is the label of the CFG. The attacker heuristically inserts a semantic Nop that is closest to the gradient $g_{i}$ into the corresponding basic block of the CFG. In each iteration, the attacker injects the closet semantic nops to the sign gradient descent. The attacker then repeats this procedure until a maximum number of iterations $T$.

Regression

    • [468] derives a necessary and sufficient condition for identifying the sign of the derivative of an unknown monotonic function by the method of weighted average derivatives. While OLS has a weighted average derivative representation, it does not necessarily satisfy the condition except restrictive cases.
    • As portrayed in [845], the orthant-wise learning algorithm of Andrew et al. uses a direct approach. In particular, they computed and set any value $d_{i}$ in $d$ to zero if its sign does not agree with $-\nabla f(x_{k})$, as in Eq. 2.8 there. However, this algorithm does not satisfy the property of reducing to Newton’s method because of the PS sign projection. The problem with this projection is that it may set elements of the Newton direction to zero for a large portion of the zero and non-zero variables. However, to lie in the correct orthant (to guarantee descent), the authors only require that the zero-valued variables in the search direction agree with the negative pseudo-gradient sign. Thus, in the PSS sign projection (PSSsp) variant, they apply the orthant-wise learning iteration but use a less constrained version of the PSsign projection, denoted by $P_{s}^{*}$.
    • Corollary 1 in [728] claims that if we have two roots for $f\left(x\right)=0$ on an interval and the tangent lines on the two endpoints have the same derivative direction, there must be another root between the two with a different derivative sign.
    • In the proof of part a of theorem 2 in [1007], it is sufficient to prove sign properties regarding the partial derivatives of $Q$ with respect to $\beta_{j}$.

Classification

    • [44] introduces a new class of sign-based schemes based on the composite nonlinear Jacobi process. An algorithm of this class that applies the bisection method to locate subminimizer approximations along each weight direction has been derived.
    • [333] presents a conceptually simple and computationally efficient family of texture descriptors. Three different methods have been proposed, namely single-loop, double-loop and triple-loop binary gradient contours, based on pairwise comparisons of pixel intensities all along the periphery of a $3*3$ window. These models have been comparatively analyzed from a theoretical standpoint. The Binary Gradient Contours are based on the sign of the discrete derivative of the image in different directions (Eq. 11).
    • Given that the traditional gradient descent algorithm suffers from long-term dependency problems, a refined BP algorithm named Rprop, which leverages the gradient's sign solely, is extended in [200] to train MIMLNN effectively.

Computer Vision

    • This circuit in [433] is nonlinear in the sense that it produces a fairly narrow current pulse at the change of the derivative sign both for sharp and smooth inputs due to the nonlinear feedback.
    • [965, 983] apply the discrete derivative sign implicitly. The authors distinguish between different rectangles' corners in the plane in efficiently calculating the integral, assigning different weights based on the corner type. Classification of corners leverages the curve's derivative sign at its corners.
    • [399] found a textured print by counting the number of changes in the derivative sign in the gray level intensity function by rows and columns.
    • During the optimization of the signal-to-noise, the algorithm in [688] optimizes the SNR ratio of the saliency map by scrutinizing its derivative’s sign at each iteration (Eq. 11-13 there).
    • One of the features used for the submap classifiers in [142] is the number of second derivative sign flips (a measure of bumpiness).
    • The proposed technique in [344] distinguishes the sign of the derivative of the intensity pattern along an arbitrarily selected direction.
    • In [753], the detection of the $\left(2n+1\right)$-neighborhood maxima on a $1D$ scan-line is shown in detail in Figure 3a there. If $g$ is the sign of the finite difference of $f,g$ is either $-1,0,$ or $1$ depending on the local slope of $f$. $g$'s finite difference $h$, therefore, equals $-2$ at local peaks, $+2$ at local troughs, and $0$ elsewhere. $1D$ peak and trough detection, therefore, requires only one comparison per pixel. Next, each $1D$ peak is compared against its $\left(2n+1\right)$-neighborhood with the knowledge of the extremum detector h. Neighboring pixels that are on a consecutive downward slope from the local peak are by definition more minor than the current peak. Hence they need not be re-compared. Only pixels outside the enclosing troughs of the current peak need an extra comparison. The number of extra comparisons to obtain $\left(2n+1\right)$-neighborhood maxima from an initial list of $3$-neighborhood maxima is very small for a smooth function $f$.
    • The method in [969] includes directional filtering and searching for straight edge segments in every direction and scale, taking into account edge gradient signs.
    • The algorithm in [593] applies the second derivative sign to distinguish between the requirement to use Newton's method or a line search in the optimization process while matching images observed in different camera views.
    • In contrast to existing approaches, the proposed cost-effective descriptors in [52] render fine orientation binning and consideration of gradient sign affordable. Experiments reveal that these descriptors achieve a significantly better trade-off between cost and performance in the vehicle verification task than standard HOG. The HOG technique was initially proposed for pedestrian detection, for which the authors claimed that including the gradient sign results in no performance gain. In effect, for humans, the wide range of clothing and background colors renders the sign of contrast uninformative. In contrast, when it comes to vehicles, the sign information might well be significant.
    • The sign of the numeric discrete derivative of the Euclidean distance function applied to frames is used in [796] to define a stop motion measure.
    • The derivative sign is used explicitly in a global minimization algorithm of [944] that establishes a meaningful distance between essential matrices during pose averaging.
    • An iterative process is used in [450] to detect light streaks in the input image automatically utilizes the sign of the derivatives of the latent image.
    • The computation of the second-order derivative in [1011] only considers a signed binary version of the first-order derivative.
    • [454] presents a computationally efficient yet powerful binary framework for robust facial representation based on image gradients (see Eq. 1,2 there). It is termed structural binary gradient patterns (SBGP). To discover underlying local structures in the gradient domain, the authors compute image gradients from multiple directions and simplify them into a set of binary strings. The SBGP is derived from certain types of these binary strings that have meaningful local structures and resemble essential textural information. They detect micro-orientational edges and possess strong orientation and locality capabilities, thus enabling significant discrimination. The SBGP also benefits from the advantages of the gradient domain and exhibits profound robustness against illumination variations. The binary strategy realized by pixel correlations in a small neighborhood substantially simplifies the computational complexity and achieves extremely efficient processing.
    • In [198], adding normals improves ordinal error, but only from the angle-based normal loss, not the depth-based normal loss. It is because depth-based normal loss emphasizes getting the same steep slopes, but this does not make any difference to ordinal error as long as the sign of the slope is correct.
    • In the proposed foreground-background separation of [575], an optical phenomenon is used where bundles of rays from the background are flipped on their conjugate planes. Using the Lambertian assumption and gradient constraint, the foreground and background of a scene can be converted to a binary map by voting the gradient signs in every angular patch. Using light field reparameterization, the disparity map can be obtained by accumulating the binary maps.
    • The image in [564] is binarized using Eq. 5 there. One can view it as an "or" between the signs of its partial derivatives. The process repeats seven times before the final image $g$ is calculated as a weighted average of the eight images.
    • As emphasized in [556], the essential part in the derivative approximation is its sign and not the amplitude because the error in the amplitude can be compensated during optimization.
    • The algorithm in [886] detects a head-turning movement in a video by assuming a frame within a short camera motion interval if the sign of all curves' derivatives is constant at a point.
    • The LBDE component in [1001] describes the amplitude change among the neighborhood pixels. In Eq. 7 there, the authors define the local binary gradient orientation (LBGO) to characterize the orientation information. The proposed LBGO is designed to extract gradient orientation from center-symmetric pixel pairs. Compared to the original WLD, LBGO uses the neighboring pixels and retains more local structure information.
    • [289] is interested in the general orientation of the gradient and not in the exact gradient vector. Therefore, the authors use only the sign of the gradient as representative of the general orientation of the gradient. Each edge point $p_{i}$ is assigned with either a positive or negative direction by Eq. 1 there. The function $X\left(p_{i}\right)$ becomes zero when the Sobel derivatives $dx$ or dy are zero, i.e., the gradients are along the vertical or horizontal directions. Thus, after the classification of curves, an edge pixel $p_{i}$ whose gradient sign function is zero is removed from the edge image.
    • Canny edge detector with auto-thresholding is applied in [290] to obtain the edge image from an input image, as shown in Fig. 2(B) there. The coordinates and gradient at an edge pixel $p_{i}$ are expressed as $\left\{ x_{i},y_{i},\eta_{i}\right\}$, respectively. Since $\eta_{i}$ cannot be calculated accurately in digital images, only the orientation of the gradient is used, denoted by its sign, rather than the actual value of $\eta_{i}$. The gradient sign function $X\left(p_{i}\right)$ at the pixel $p_{i}$ is defined as in Eq. 1. The edge pixels corresponding to horizontal and vertical gradients, whose gradient signs are undefined, are discarded. The authors define $\mathscr{Q}\left(e_{k}\right)$ as the direction of the arc that lies in a quadrant. Consequently, the arcs of the positive gradient direction rest on the first or third quadrants ($\mathscr{Q}(e_{k})\in\left\{ I\bigcup III\right\}$) while the arcs of the negative gradient direction belong to the second or fourth quadrants ($\mathscr{Q}(e_{k})\in\left\{ II\bigcup IV\right\}$) as illustrated in Fig. 2(C, D). $I,II,III$ and $IV$ represent the number of four quadrants. This property shall be used in section II(C) again for arc classification.
    • In [876], there is a strong relationship between vertical polarity and the surface second derivative signs.

Image Processing

    • The signed differences $g_{p}-g_{c}$ in [706] are not affected by changes in mean luminance. Hence the joint difference distribution is invariant against grayscale shifts. The authors achieve invariance with respect to the scaling of the grayscale by considering just the signs of the differences instead of their exact values as in Eq. 5 there.
    • A modified derivative sign binary method is proposed in [1031] to extract fringe skeletons from interferometric fringe patterns.
    • The velocity and acceleration signs are used as features in classifying the signatures in [431].
    • Unfortunately, the sign of the derivative vector is sometimes unknown on an equiluminant edge and is set arbitrarily in the current theory. However, choosing the wrong sign can lead to unnatural contrast gradients (not apparent in the original color). In [296], this sign problem is ameliorated using a generalized definition of luminance and a Markov relaxation.
    • [351] reports an automated method for segmenting blood vessels in retinal images using a unique combination of differential filtering and morphological processing. The centerlines are extracted by applying the first-order derivative of Gaussian in four orientations, and then the evaluation of derivative signs and average derivative values is made. The shape and orientation map of the blood vessel is obtained by applying a multidirectional morphological top-hat operator followed by bit plane slicing of a vessel enhanced grayscale image.
    • After constructing the derivative sign binary image, [311] efficiently extracts the fringe center lines.
    • In [945], both the parameters $m$ and $n$ are defined based on the signs of the partial derivatives of $f$.
    • Upon conducting simultaneous Super-Resolution of depth and images using a single Camera in [859], the sign of the gradient of the data cost function is used to evaluate the optimal index during the optimization process.
    • In the fourth part of the algorithm of [638], the authors compute the average gradient sign vector, weighted by the strength of edge points.
    • In [925], it is noted that the basins of attraction of the true and alias solution are the positive and negative semiplanes, respectively. Therefore, the sole knowledge of the first derivative sign would provide a good enough initial condition for any iterative solver to converge to the actual solution.
    • [1046] describes a single-image super-resolution method based on gradient reconstruction. The sign of the derivative of the input image's gradient magnitude is used for Gradient Ridges and Mask Generation.
    • Equation (11) in [150] is binarization. A nested motion descriptor can be binarized by computing the sign of (10) there. It constructs a nested motion descriptor with binary entries. It is an optional step that can be used to provide compact representation. It can be thought of as the discrete sign of the partial derivative of $d$.
    • [362] discusses the problem of inferring the shape of a deformable object as observed in an image using a shape template. Proving that the sign of the derivative of a function remains constant in an interval is an integral part of the algorithm's justification. Further, step 4 of the algorithm uses refinement to find all solutions on each interval by forcing all different combinations of signs for $\theta$ and $\theta\prime$.
    • The algorithm in [727] retains large image gradients and removes tiny details from an intermediate image, where only the gradient sign and its maximal absolute magnitude are relevant.
    • Three discomfort characterizations for depth jump cuts are defined in [277], namely "mildly uncomfortable", "uncomfortable", "highly uncomfortable". According to the sign of positive and negative depth derivatives, a characterization is given to a depth jump cut.
    • A partial differential equation, called SF, is used in [453] for image sharpening and enhancement. The SF process can suppress the edge diffusion, achieve image deblurring and deconvolution. Still, it is susceptible to noise, and the noise is also amplified when the image is enlarged. The SF is commonly generalized by Eq. 7, which incorporates the sign of the second-order directional derivative of the image gradient direction.
    • [588] utilizes the sign of the discrete derivative of the aesthetic score with respect to the number of steps the agent has taken.
    • [664] opts to define the solution vector as a function of the gradient sign rather than that of a gradient. It does so to constrain its direction to belong to the hypercube of interest.

Computer Music

    • In [162], it is required to determine which portions of the source motion best match with those in the new target motion. It is achieved by using a motion matching algorithm (Pullen and Bregler, 2002). The algorithm is depicted in Figure 5, and the motion curve is broken into segments where the sign of the first derivative changes. For better results, a low-pass filter is applied to remove noise beforehand. All fragments of the (smoothed and segmented) target motion are considered one-by-one, and for each, the authors select whichever chunk of source motion is most similar. By breaking up the movement at first derivative sign changes, they enforce better audio continuity over portions of motion that are constant. On the other hand, segmentation based on second derivative changes, or inflection points, gives better audio continuity at changes in the motion. Consequently, the system generates two soundtracks, one for each segmentation strategy, and the animator picks whichever best their expectations.
    • In [953], the authors follow a naive rationale for the substitution score: if two spans have roughly the same shape, they are considered the same, no matter how similar they are. The authors only look at the direction of the splines at the beginning and the end of the spans. If the two curves have the same derivative signs at the end and the beginning of the span, the penalization is the smallest. If the two curves have opposite derivative signs at the end and the beginning of the span, the penalization is the largest. If the two curves have the same derivative sign at one end of the span but not at the other, the penalization is averaged.
    • Several authors have proposed cost functions using the derivative information to avoid singularity points and reduce alignment bias. Keogh and Pazzani also combine the Savitzky-Golay filter to estimate the derivative and avoid problems with noise. Following these ideas, [847] proposes a novel cost function that handles conducting gestures with a wide range of amplitudes better than the simple derivative measures by decreasing the cost value when the signs of the derivatives of both signals agree. Such addition prioritizes the matching of monotonically coherent portions of both trajectories (i.e., increasing and decreasing behaviors, which are characterized by the sign of the derivative), which also implicitly helps to align local extrema, even when the amplitude variation is considerable. It is an essential feature in the paper's context since the amplitude of the movement is highly user-dependent and may vary significantly among different people (e.g., children are more minor in size and consequently will make smaller movements than adults).

Validation and Verification

    • In [632], the derivative feature is extended into sign-derivative and extreme-derivative features. The sign-derivative feature is parameterized by $\left(s,n\right)$ where $s$ is the sign of the signal derivative and n is the number of consecutive time steps during which the sign of the signal derivative is $s$.
    • In [274], an entity often monitors a variable and reacts when this variable crosses a specific value with one particular derivative sign.

Computer Simulations

    • In [893], to minimize the overshoot problem, the Newmark time-stepping algorithm uses a variable time-step when velocity sign changes are detected. The time-step is repeatedly bisected until the absolute value of the response velocity at the end of the reduced time-step is less than a preset fraction of the peak response velocity.
    • In [1032], the damper velocity $\nu_{D}$ or the sign of the damper velocity $sign(\nu_{D})$ provides information about the direction into which damper is moving compression or rebound.
    • In the setting of [388], the experimenter knows beforehand that the simulator response is monotone in some of the inputs. However, they only know the sign of the derivatives. The magnitude of the derivatives is unknown. Through the mechanism of a link function, monotonicity information is encoded via virtual derivatives (binary indicators of derivative sign) at points in a derivative input set. An advantage of approaches that use derivative sign information at specific locations in the input space is that they offer flexibility in incorporating monotonicity information. For example, by specifying that derivatives are positive with respect to a particular variable at particular locations, we have the flexibility to make predictions of the response that has a monotone relationship with a predictor in just a subset of the range of the predictor.
    • In [467], the TM-score is the best possible value of the preceding quantity for all possible superpositions of two structures, where $D_{i}=\Vert x\left(\text{Model}\right)-x\left(\text{Data}\right)\Vert$. It requires iterative optimization, which the authors implemented with a sign gradient descent with $100$ iterations to superimpose the model and target structure optimally. They backpropagated through this unrolled optimization process as well as that of the simulator.

Computer Security

    • In [240], the cross-covariance function, (24) and (25), depends not only of the density function, $f^{\ast}(x)$, and the representation used for the chaotic map, $\sigma t(x)$, but also of the chaotic map itself, $\tau\left(x\right)$, and the sign of its derivative, $sign\left(\tau\prime\left(x\right)\right)$.
    • In lemma 7.1 of [378], to bound $\lambda$ the authors analyze the monotonicity of $f$ based on the sign of its partial derivative. In lemma 7.2, we directly prove the monotonicity properties of $Q$ based on its derivative sign.

Software

    • Theorem 1 in [708] and its proof leverage monotonicity information only, embodied by first derivative signs of the involved functions.

Search Engines

    • In [184], when two adjacent edges with opposite gradient signs (i.e., one has a positive and the other a negative gradient) are found within a specific distance, they form an edge pair.
    • [600] introduces the ADM (Adaptive Discrete Minimization) algorithm, where the optimal hash code is optimized leveraging the sign of the function’s gradient at each iteration.
    • The main impact of utilizing the mutual relationship among adjacent neighbors in [72] is that we do not rely on the sign of the intensity difference between the central pixel and one of its neighbors only. Instead, the authors consider the sign of difference values between its adjacent neighbors and the central pixels and the same set of neighbors.
    • The iterative update of $\Delta$ in Eq. 16 in [203] is based on the sign of the loss function at the previous step, where the $sgn(\cdot)$ operator is applied on the matrix element-wise.
    • B-step: The B-subproblem in [1016] is a binary optimization problem and adopts the signed gradient descent optimization algorithm, as Eq. 8.

Computer Graphics

    • [783] matches the first derivative of the chosen band of each of the angles. Including the first derivatives in the matching helps determine fragments of accurate data more closely matched in value and dynamics to the keyframed data. The derivative sign change of only one of the angles is used to determine where to break all of the data corresponding to the matching angles into fragments.
    • Different approximation techniques are discussed in [353] for the affine form of several functions: Optimal (Chebyshev), Min-range, and Interval approximation. While optimal and min-range approximation requires the function to be bounded, twice differentiable, and with the same sign of the second derivative on the given argument range, the interval approximation requires only the function to be framed. However, the range of the function for interval approximation is wider than for other approximations.
    • In [685], algorithm 1, "points of $S_{x}$ generation along $O_{z}$", the variable $\Delta x$ equals $\pm1$, and it can be determined by just testing the sign of the partial derivative of $x$ with respect to $z$ based on the implicit function theorem. In turn, the variables $\beta$ and $\gamma$ are based on a condition that tests whether the sign of the discrete $x$ equals $\Delta x$.

Computational Geometry

    • The gradient-sign parameter in Eq. 3 in [447] accounts for the ability of a vehicle type to cope with positive or negative directional gradients. Different vehicle types may react with positive or negative gradient differently. A bicycle may have a higher cost associated with a positive gradient than a negative gradient. A car may have equal costs for both positive and negative gradients. While a truck may have a higher cost associated with a negative gradient than a positive gradient because the heavy load of a truck may cause danger in going down the slope.
    • [6] classifies all configurations into three types, according to the sign of the partial derivative of distance with respect to the puppy's position. The critical configurations are further classified based on the second and third derivatives' sign.

Computational Modeling

    • In [345], the flow convergence and deceleration result in the accumulation of substances at soils caused by slowing down or termination of overland and intra-soil transport. On different scales, the intensity of these processes and the spatial distribution of accumulated substances can depend on the spatial distribution of the following land-form elements. Thus, the natural classification of landform elements is formed by the signs of $k_{h}$ and $k_{v}$.
    • In [934], whereas qualitative reasoning usually uses the sign of only the first derivative, the deduction in this paper is conducted based on the signs of first $n^{th}$ derivatives.
    • A monotone and cooperative study can also be performed using graph theory. At the graph monotonicity analysis in [271], the species graph assigns a node for each model compartment. No edge is drawn from node $x_{i}$ to node $x_{j}$ if the partial derivative $\partial f_{j}/\partial x_{i}(x)$ equals zero, meaning that node $x_{i}$ has no direct effect on node $x_{j}$. An activation arrow ($\longrightarrow$) represents that the derivative is strictly positive, while an inhibition line ($\dashv$) denotes that it is strictly negative. However, if the derivative sign changes depending on the particular entries, both an activation arrow and an inhibition line are drawn from node $x_{i}$ to node $x_{j}$.
    • The Partial Derivative Sensitivity Analysis method in [739] tests the relationship between the objective function and its parameters based on the signs of its partial derivatives.

Electricity

    • In figure 6 of [1],two asymmetric applied-voltage waveforms (positive- and negative- ramp) are applied to the reactor to better understand the discharge activity's dependence on the slope applied voltage slope and its sign. These waveforms are characterized by combining the fast and slow slew rate of the applied voltage in one waveform. The applied voltage of the positive ramp had a significant negative slope and a smaller positive slope. In contrast, the applied voltage of the negative ramp had a fast transition when negative and a slow change when positive.
    • In [562], because of the V_{string} oscillations, the power $P_{string}$, which is extracted from the string, has a component that oscillates at the same frequency. So the correlation of the $V_{string}$ and $P_{string}$ (after a low pass filter) is proportional to the sign of the slope $\frac{dP}{dV}$. The point of the maximum power is a point where the derivative $\frac{dP}{dV}$ changes sign.
    • At the iterative adaption algorithm in [524], the authors define the matrix $J$ based on the sign of the derivative of KPI with respect to $x$.
    • The sign of the spoke speed, defined in [716] by the slope of the bands observed in the $LS\left(\theta,t\right)$ contours. It is opposite to the slope sign in the examples of Figure 4 (spoke rotation in the channel). The rotation in the ionization chamber is counterclockwise, while the rotation in the channel is clockwise (for a frontal view of the thruster).
    • The voltage in [860] starts on the coil, its polarity depending on the derivative sign of $\frac{d\phi}{dt}$, that is, whether a wheelset is approaching or leaving a permanent magnet. Consequently, the running of each wheelset of the moving train above the permanent magnet causes voltage impulses on the coil.

Fault Analysis

    • Turning on the switch $S$ in [866] increases the inductor current $i_{L}$. Consequently, the sign of the slope of $i_{L}$ remains positive during this time interval (DTs). Fig. 4 presents the general scheme of the proposed fault diagnosis. In subsystem FD1, the inductor current ($i_{L}$) passes through a derivation block and then through a sign block which computes $sgn\left(\frac{di}{dt}\right)$. If $i_{L}$ increases, $sgn\left(\frac{di}{dt}\right)=1$ and if $i_{L}$ decreases $sgn\left(\frac{di}{dt}\right)=-1$. The calculated error signal equals $1$ when the estimated and measured current slopes are different. If there is no switch failure, the two signals $sgn\left(\frac{di}{dt}\right)$ and $S'_{q}$ have the same values, then the signal “error” is $0$, as described in equation 1.
    • The fault diagnosis algorithm in [480] needs only the sign and not the exact value of the inductor current slope.
    • The behavior of $i_{L}$ as a fault indicating signature in [103] happens to be the same for all non-isolated single-ended DC-DC converters. Switch OCF and SCF can be detected for all non-isolated single-ended DC-DC converters using signed inductor current derivative for CCM.
    • The reliability of the proposed scheme in [313] is enhanced remarkably owing to the non-communication operation. Moreover, its security against mal-operation in transient cases is guaranteed via two security conditions depending on the derivative sign of both current and voltage signals.
    • In [515], a switch from off to on occurs, which in turn causes the frequency to decrease - and vice versa. This change in the derivative sign will cause an infinite number of switches within some finite time, resulting in the chattering behavior.

Control Systems

    • The control law in [452], implemented to achieve the desired energy, is a function of the sign of the angular velocity.
    • In [956], only the sign and not the value of the derivative is used. Therefore, it's possible to derive formulae to determine the derivatives' signs, which require less computational power than those for calculating the value of the derivatives.
    • The system convergence in [605] implies that a correct phase for delay compensation has been selected in that the gradient's estimated sign is correct. Having six available phases to choose from means that at least one and at most two of the neighboring phases will also give an accurate estimate, maintain convergence, and exhibit limit cycles.
    • The parameters of the plant's transfer function with the asymmetric dynamics in [1047] change when the sign of the output parameter's time derivative changes. Therefore, the classical controllers with the constant parameters do not allow us to achieve the excellent transient performance of the control of the mechatronic system in such a case.
    • [481] demonstrates that the local behavior of the root path $s\left(\tau\right)$ around any associated critical delay $\tau\in T$ can be entirely characterized by the sign of the imaginary ratio between two derivatives. Further, for simple imaginary roots, the root tendency is invariant in the sense that the root tendency for some delay determines the root everywhere.
    • The Sign of the first derivative of the active power signal of the magnetic separator motor in [27] determines the direction of change in ore mill charge.
    • The calculation of $C_{0}$ in [609] depends on the derivative sign of $\varphi$, as stated in formula (13).
    • The velocity's sign is used throughout [526] in different contexts, e.g., in setting the domain of the parameter $\rho$ in Eq. 3.16b; in determining the value of the function G in Eq. 3.21 and its derivative in Eq. 3.38, 3.39; and in constructing the Lyapunov function candidate in Eq. 3.40.
    • The equations of the system’s motion in [811] are linearized differential equations explicitly incorporating the derivative sign.
    • [428] considers trajectories where the derivative sign is opposite to that of the corresponding entry in the gradient of an energy function.

Thermoelectricity

    • [577] shows that one can control heat dissipation by changing the anchor groups from isocyano to amino. The authors further prove that the slope sign of the transmission curve of a molecular junction governs in which electrode the majority of the heat is dissipated. Finally, they show that the sign could be changed from positive for amino to negative for isocyano.
    • In [631], to get cooling, it is necessary to apply a voltage bias with a positive or negative sign, depending on the properties of $T\left(\epsilon\right)$, which define the behavior of $L_{ij}$. Crucially, the sign of the off-diagonal coefficients, $L_{12}=L_{21}$, depends on the sign of the slope of $T\left(\mu_{c}\right)$. Thus, $\Delta\mu>0$ ($\Delta\mu<0$) for the positive (negative) slope of $T\left(\varepsilon\right)$.
    • The ambiguous characteristics $IC\left(VCE\right)$ are obtained in [393] at both types of cooling conditions. The point of the electrothermal breakdown, in which these characteristics' slope sign changes from positive to negative, is visible on each characteristic. Such a shape of the considered characteristics also means that the breakdown in the investigated transistor can appear at a value of voltage VCE, which is considerably lower than the admissible catalog value.

Electrical Circuits

    • As illustrated in [259], the derivative of the high-frequency dielectric constant with respect to the pressure changes sign as the compounds become more ionic. It is connected with the sign change of the parameter $h$, which goes from positive to negative.
    • To simplify implementation and make (8) in [812] causal, the authors make a substitution for the slope term in (8) and add a delay to obtain the equation used for the phase detector as in equation (9). Equation (9) uses a delayed error and the slope sign calculated from the output of the slicer.
    • [442] applies a digital counter in conjunction with the differentiators from the NEO to measure the width of the spike. The first differentiator has an auxiliary sign output. A change in the sign of the first derivative indicates a minimum or maximum in the input signal. After a spike is detected, the following change in the derivative sign starts the counter. The second change in the sign output causes the counter value to be registered for readout and count back down to zero. The additional delay allows time for the extreme spike values to occur and be sampled by the peak detectors. When the counter returns to $0$, the Ready signal is asserted to initiate conversions of the maximum and minimum voltages.
    • The derivative sign is an integral part of the formulas development process in [948].
    • In the feature extraction section of [443], the peak detector is based on the signal's derivative sign. A digital counter is used with the differentiators from the NEO to measure the width of the spike. The first differentiator has an auxiliary sign output. A change in the sign of the first derivative indicates a minimum or maximum in the input signal. After a spike is detected, the following change in the derivative sign starts the counter. The second change in the sign output causes the counter value to be registered for readout and the counter to count back down to zero. The additional delay allows time for the extreme values of the spike to occur and be sampled by the peak detectors. When the counter returns to 0, the Ready signal is asserted to initiate conversions of the maximum and minimum voltages. The counter is also intended to measure the spike width.
    • Based on equation (2.2) in [607], the sign of the slope is determined by the sign of the capacitor. For a negative capacitor the slope is always negative. In contrast, the reactance of the positive capacitor monotonically increases with frequency. According to Foster’s theorem, it is clear that a negative capacitor is categorized as non-Foster impedance, judging by the slope of the reactance curve. This unique non-Foster characteristic is utilized for broadband application.
    • In [49], currents are grouped, and voltages are divided into groups based on their range and the derivative sign of $x_{i}$.
    • Without the fast excitability elements, the fast $I-V$ curve in [799] is monotonic, the slow $I-V$ curve is “N-shaped”, and the ultra-slow $I-V$ curve is monotonic, so the system is slow excitable. The voltage regions are now indicated with two signs so that the first sign corresponds to the sign of the slope of the fast $I-V$ curve, and the second sign corresponds to the sign of the slope of the slow $I-V$ curve.
    • The transition into MEP-lock initially involves a rapid MEP search using sign-gradient descent, followed by fine-grained MEP tracking across PVT and load variation (Fig. 19.1.3 in [952]). In each search step, the system is briefly operated at the search voltage to determine the Vdd-dependent variables, Cfly and Nclk, needed for tEPC comparison.
    • [789] integrates the input current signal. Its effect on the waveforms depends on the resistance change sign. The long current pulses slow down or accelerate the transient process, but short current pulses do not impact the resistance value. Further, the phase plane with axes $R_{1}$ and $R_{2}$ (Figure 6) can be exploited to analyze different behavior versions of such a system. The analysis is based on model Eq. (8). In this case, the trajectories of moving the image points are straight lines. They pass at angles of $\pm\frac{\pi}{4}$ on phase plane. Four trajectories can pass through each point of phase plane. The sign of $\frac{dR}{dt}$ defines one from them. The threshold resistances specify the boundaries of the area of trajectories movement. When the trajectory reaches the boundary, the sign of the derivative $\frac{dR}{dt}$ changes and the trajectory is mirrored from the boundary. The edges can shift themselves at this time point.

Electrical Currents

    • The characteristic of a current flowing in a ring can be obtained by the shift in Eq. 2 of [250]. The slope of the current characteristic (2) (i.e., the sign of the derivative with respect to $\Phi$) allows one to distinguish the parity. A current that has a positive slope at $\Phi=0$ is called a paramagnetic current, whereas a current with a negative slope at $\Phi=0$ is called a diamagnetic current.
    • The observed photocurrents in [781] vanish for resonant excitation of excitons and reverse their direction with a change of the sign of detuning. For non-resonant excitation, the phase differences show a gradual, close-to-linear variation, with the slope sign depending on the sign of detuning.

Imaging

    • Figure 3 in [372] illustrates how the calculation of the order of $\delta$ is performed. The sign of the calculated slope of $\left|\sin\delta_{0}\left(k\right)\right|$ determines the interval to which $\delta_{1}$ belongs. It means that in the case of a positive slope any $\delta_{1}$ is within a specific area and will be assigned to the region $\left[m\pi;m\pi+\frac{\pi}{2}\right]$. Similarly, if the slope is negative and $\delta_{1}$ is calculated to belong to $B$ then it will be assigned to the region $\left[m\pi+\frac{\pi}{2};\left(m+1\right)\pi\right]$.
    • As discussed in [1012], the quality of the linear approximation in a square depends on whether the second derivative sign remains constant there.
    • The possibilities illustrated in [280] are evaluated using a heuristic approach for choosing the best estimates of the principal values based on a measure of edge strength and the sign of the third derivative of the broadened experimental spectrum.
    • At the suggested phase derivative (PD) method in [404], the phase distribution of the tested object wave is firstly worked out by a simple analytical formula; then, it is corrected to its proper range according to the sign characteristics of its first-order derivative.
    • Phase-contrast MRI modulus images were difficult to segment in [500] because of the flow-related contrast variations along time. Therefore, process velocity images were preferred, presenting connected velocity signs in tricuspid inflow regions.
    • The sign of the slope $\frac{dD}{dt}$ is used in [979] to determine to which branch the phase $\Phi\left(t_{i}\right)$ belongs.
    • Assuming a linearly chirped pulse with a chirp coefficient $\beta$, the signal in [87] is expected to change sign when $\beta$ changes sign (equation 2.19). The more general Kovalenko model also predicts this effect. A linearly chirped probe’s instantaneous frequency vs. time can be represented as a straight line with a slope $\beta$. When upon reflection, the coating strongly modulates the probe’s GD, the sign of the slope $\beta$ may change the sign for a finite wavelength interval. If the slope was increased, the same modulation would no longer be enough to reverse the sign of the slope at some point. It follows that increasing the white light chirp should remove the artifact flipping. The Lorenc model explicitly covers only moderate modulations, where $\beta$ does not change sign.
    • In [960], the step heating and cooling are nearly identical except the derivative sign. Put differently, according to figure 4e, the step cooling stimulation shows a very similar tendency but with an opposite sign of the slope compared to the heating case. The signal for pulsed stimulation has a behavior similar to the case of cooling stimulation, where the signal experiences a rapid pulse increase and then descends very quickly until reaching an asymptotic value at zero.
    • In the context of the DOI discrimination with a double-threshold approach in [604], a time-amplitude correction was performed to retrieve a monotonic evolution of $\Delta t\left(2-1\right)$. A linear function was fitted through the scatter plot of $\Delta t\left(2-1\right)$ against the integrated charge of the first and last DOIs, giving a negative slope. The resulting fit was then mirrored with a higher slope (changing the sign of the slope and multiplying by a scaling factor) for better separation of the different DOI regions by exploiting the signal intensity information. Correcting each event with the parameters of the correction curve yielded the distributions leading to a monotonic increase of $\Delta t\left(2-1\right)$. The choice of the slope extension was done by sweeping the scaling factor until there was minimal overlap between the distributions. A higher slope gave no significant modification of DOI resolution. Indeed, as soon as a monotonic behavior is achieved, separating the regions is not helpful as intra-region separation of the events co-occurs, so the overlap between the adjacent regions remains of the same order. Even for the first shallowest DOIs, extending the slope is less valuable since there is already a small monotonic behavior.
    • Lemma 3.1 of [130] proves monotonicity and concavity properties of the function h defined in equation 21. For that, the authors leverage the sign of its partial derivative.

Telecommunication

    • In [677], decides about the sampling phase based on the signs of the error and slope. It is illustrated in table 1 there. Here a positive error/slope is denoted by $1$ and a negative error/slope by $0$. The slope sign can be obtained by comparing the input's current value with a sample of $u$ delayed by one symbol period.
    • Practical high-speed implementations of the LMS algorithm often use only $1$-bit representations of the sign of the error and the slope. [678] applied this idea to MMSE TR results in the sign–sign MMSE (SSMMSE) rule as detailed in equation 30.
    • The digital input to the multiplier in [306] is the sign of the slope. The difference between the following sample and the previous sample is computed and quantified with a signed comparator. The product of the amplitude error and the slope sign form the phase error for one phase of the PRS. The outputs of both interleaves are summed together in the transconductor to produce a continuous-time differential phase error.
    • [293] applies the derivative sign of the energy efficiency $\Lambda$ in step 6 of algorithm 1 and step 5 of algorithm 2.

Electrical Energy

    • [748] introduces a prediction for a sinusoidal excitation. The phase shift of the oscillating intensity only depends on the intensity's slope sign: $I$ oscillates in-phase with dV when the slope is positive, but out-of-phase (with a $\pi$ phase shift) when it is negative. Further, for a given diffraction pattern, the phase shift of each spot is found to be correlated with the sign of its corresponding measure $\frac{dI}{dE}$ derivative. The middle of Fig. 6 displays the corresponding evolution in the $\left(1,0\right)$ spot intensity energy. These values are extracted from the 'mean' images for the same series of energies. The intensity displays peaks, maxima, and minima in a wide range of energy. The $I$ vs. $E$ curve allows several energy intervals where the $\frac{dI}{dE}$ derivative is positive or negative. This series is not intended to provide values for the derivative. Its purpose is to study the correlation between the slope sign and the value of the phase shift. An excellent correlation is observed: the response is thoroughly found to be in-phase as the slope is positive and out-of-phase (with a jump of $\pi$) as the slope is negative.
    • In [403], there is a clear correlation between theoretical $A$'s sign with the experimentally observed derivative sign, $\frac{d\mu}{dT}$, in the actual temperature interval. It is per the estimation of $N_{cross}$ for InGaAs: $\frac{d\mu}{dT}>0$ for $S$-subbands with large $n_{1}$, but $\frac{d\mu}{dT}<0$ for $AS$-subbands with small $n_{2}$. The $\frac{d\mu}{dT}$ sign correlation with the value of $n$ (and the theoretical $A$'s sign) corroborates the EEI nature for the temperature dependence.
    • The estimated slope in [339] is more susceptible to noise. The actual and the estimated state can be in different segments of the SOC, which could cause divergence. The gain is set to zero when the estimated slope has a distinct sign from the modeled slope. Therefore, the system will run an open-loop for both voltage and force when a slope mismatch occurs. It is done to avoid instability issues.

Wind Power

    • In [682], it is shown that negative $V_{dr}$ can change the positive sign of the slope into a negative one producing an unstable region around slip $s=0$.
    • As discussed in [913], the slope $\frac{dT_{e}}{ds}$ at $s=0$ depends on the sign of $V_{dr}$, and it is always positive when $V_{dr}>0$. The sign of the slope is crucial as it determines the stability in the lack of feedback control. The slope can be negative by negative $V_{dr}$, producing an unstable region around slip s=0.
    • [629] conducts a Hamiltonian derivative sign analysis.
    • [906] applies detection methods used to validate the sensor. They preferably use instantaneous criteria: an instantaneous evaluation of the sign of the tangential velocity an immediate assessment of the profile wake width.

Signal Processing

    • The phase derivative sign in [46] reflects the groups with the highest intensity occurring the most frequently in the analyzing volume.
    • A gradient sign algorithm for transmit antenna array adaptation has been defined in [74], and the algorithm's convergence and tracking have been analyzed. The algorithm uses gradient sign feedback from the receiver to generate a coarse gradient estimate used by the transmitter to adjust the transmit weights recursively.
    • The 10Gb/s eye diagrams obtained with a standard single-drive-cut modulator after modulation and 50km of propagation through a dispersive fiber exhibit significant differences in the distortion of the signal if the sign of the slope of the transmission response is not properly chosen in [238], whereas a modulator having a domain inverted section can generate the same signal for both slopes.
    • The 'vector' in [959] is split up into $N$ intervals. Each interval ends in a change of sign of the slope of $y_{k}$. In other words, the trends are constant in each interval.
    • The polarity in [396] is assigned to the frame based on the analytic signal's slope sign.
    • The convenient indicator of the transfer function drop in the band in [798] is the first derivative sign. If this sign changes more than twice in the internal passband, it is evident that the characteristics are bent.
    • The discussion in [838] demonstrates the potentials of MRD action as a velocity-sign sensor and presents critical issues which need to be addressed to enable its real-life applications.
    • Time instants in which the velocity sign is changed in [813] are determined with sufficient accuracy allowing the implementation of switching algorithms. Moreover, $u_{sky}$ and $u_{grd}$ are determined based on the derivatives signs (velocities) $sgn\left(x_{s}'\right)$ and $sgn\left(x_{e}'\right)$.
    • In [1015], the derivative sign might be opposite to that of the actual value if three-point formulas are used. Therefore the calibration direction changes with the normalized input frequency.

Control Charts

    • The MPPT algorithm in [585] measures the sign of $\frac{dy}{dt}$, whereas the resulting dynamics are governed by $\frac{dy}{dt}$. It is due to eq. 6, that summarizes different cases discussed qualitatively.
    • The incremental conductance (IncCond) method in [318] is based on the fact that the slope of the PV array power curve is zero at the MPP, positive on the left of the MPP, and negative on the right, as given by the sign of the derivative $\frac{dP}{dV}$. Further, the authors survey calculation methods this derivative and its sign in previous works.
    • From the $P-V$ characteristics shown in Fig. 3 in [527], it can be visualized that the slope is positive at the left of MPP and negative at the right of MPP. Depending on the slope sign, the duty cycle has to be perturbed to track the peak power, and the flowchart of this conventional P&O MPPT algorithm is shown in Fig. 4. The duty cycle and the PV voltage are inversely proportional to each other, i.e., an increase in duty cycle causes the $V_{PV}$ to decrease and vice versa. In the drift-free modified P&O MPPT algorithm, $V$, $I$, and $P$'s (discrete) derivative signs are all used.

Energy Management

    • The fringes' normal directions in [986] are determined by the directions in which the change of the gray distribution is most significant. The positions of the light fringes' center lines can be obtained in normal directions by using the 2D derivative-sign binary map. In the process of implementing the method, the thinning for the broad binary fringes is concerned. In some circumstances, the thinning results are the geometric centers of the wide binary fringes rather than the physical center lines. Hence, some errors are brought. In the triangulation measurement system by a Bessel beam, the most crucial characteristic of the ring-structured light fringe pattern is that the derivative signs in the normal directions on both sides of the fringes' center lines are opposite, while the de. In contrast,e signs between contiguous black and white center lines are identical. Based on the characteristics above, the extraction method of the ring-structured light fringes' centerlines based on the $2D$ derivative-sign binary map is proposed. Unlike the traditional extraction method, the process doesn't depend on the particular threshold and has performances of solid applicability, high accuracy, and high automation degree.
    • The classification of the periodic orbits in [673] is performed based on the curve's slope sign in the configuration space $\left(x,u\right)$. Further, when the amplitude of the second mass ($u$ component) increases, the amplitude of the first mass is limited by the elastic stop. This behavior implies a change of the modal line's slope sign (on the neighborhood of the origin) and the apparition of a new oscillation.
    • Inspired by discontinuous control protocols, to get finite-time synchronization, [291] proposes a modification to the signed gradient method from the Kuramoto model, as in Eq. 1.5. and 2.7. They study the signed gradient type Kuramoto model with identical oscillators in section 4.1.
    • The main problem of a preliminary digital signal processing is the calculation of minima $\left(m_{1},m_{2}\right)$ and maxima $\left(M_{1},M_{2}\right)$ of rising and falling edges to calculate the real boundary of shadow further. To solve this problem, [221] applies an algorithm shown in Fig. 10 is designed to implement on a field programmable logicdevice (FPLD). The derivative sign change detector 1 receives serial data on voltage in CCD cells and clock pulses for cell counts. When the derivative signs changes, the detector transmits a control signal to FIFO buffers $4$ and $5$. FIFO buffers receive a cell number and a control signal from the derivative sign change detector $1$, and then output the latter four cell numbers received.
    • For a global analysis using homogeneity, the Lyapunov function derivative sign can be checked not in the whole state space but on the sphere with the unit radius only (defined by the homogeneous norm), as illustrated in [307].
    • Based on the sign of the gradient estimation, a variable structure controller in [58] generates the control input for the nonlinear plant. Zero-mean white noise in performance measurement is considered in the problem. The sliding mode observer has dramatically improved the accuracy of gradient estimation by limiting the rate of change of the estimate. Moreover, the variable structure controller depends only on the sign of the forecast, not the magnitude. It adds to the robustness of the overall system.
    • It is plain that (2.1) in [731] cannot describe a system with a quadratic damping as the term involving $\left(x'\right)^{2}$ does not change sign and oppose the motion when the velocity reverses its sign. The authors split (2.1) into two parts to remedy this feature depending on the velocity sign. In turn, the Hamiltonians in 3.3 are defined separately for positive and negative derivatives.
    • The signs of the surge, sway and angular velocities in [509] are used in the differential equation (1). In turn, they are also applied in equations (14), (15), and (20).
    • To avoid oscillations in [696], the authors distinguished the values of $\alpha$ according to the Lagrangian function's derivative sign.

System Dynanics

    • The feature vector in [713] represents the original behavior as a sequence of atomic behavior modes based on derivative signs.
    • The sign of the derivative of the generator function in [38] is shown to change alternately at the singular frequencies.
    • In the frequency response rating program in [877], the signal amplitude is defined for positive values at changing signal derivative sign from positive to negative.

Mechanical Friction

    • The base sensor estimated torque in [665] reproduces the input voltage sine wave with a disturbing torque whose sign is changed when the velocity sign changes.
    • When using a broad purpose program, as in [288], the output of the velocity sign history is required after each collision. The size of the new time step then depends on the velocity sign.
    • The velocity sign in [824] is an integral part of the formula and the decision flow.
    • If only static friction is considered, the modified LuGre model in [197] is reduced to Eq. 8 there. It indicates that, by fixing the nominal micro stiffness, $\beta_{0}$, the adaptation of actual micro stiffness, $\sigma_{0}$, effectively changes the level of static parameters, for example, $F_{C}$ and $F_{S}$ in $g\left(v\right)$. It takes into account the velocity sign. Further, friction identification is conducted to set initial values in the adaptive friction observer. The model in Eq. 1-6 is reduced to Eq. 41., which incorporates the sign of the derivative of the angular position.
    • When the system is in the slip state, based on Coulomb’s law of friction, the friction force in [1020] can be expressed in Eq. 65, thus incorporating the sign of the tangential velocity during the sliding.
    • In the stochastic analysis in [596], the belt velocity was modeled as a random process constant by parts. For which interval, the number of changes of the belt velocity sign is given by a random variable with the Poisson distribution.
    • The static Stribeck friction model in [821] and other physical sizes explicitly leverages the velocity sign.
    • The Dahl friction in [215] is presented as a first-order non-linear ordinary differential equation. The general form of the Dahl friction model is given by Eq. 10 and 11, which incorporate the derivative's sign. In turn, the modified form of the kinematics equation that includes the Dahl model is given as in Eq. 12-15, also incorporating the velocity sign.
    • A Coulomb friction model is used in [472] to simulate friction behavior in this paper can be formulated as in Eq. 1, incorporating the velocity's sign. In turn, the sign of the difference velocity $x'-u'$ is applied in Eq. 3 and 6. Other derivatives' signs are applied in Eq. 5 and 7.
    • Kinetic friction formulas, such as Eq. 2 and 3 in [193], incorporate the derivative sign. They are in turn incorporated into the global structures of the system (1) with the kinetic friction force $F\left(v_{r}\right)$ having the form (3), stated in Eq. 4.
    • The dry friction forces between the tool, the workpiece, and the chip in the three directions in [973] are expressed in Eq. 3 there, incorporating the signs of the velocities in the $x$, $y$, and $z$ directions. These are applied in the governing equations of the cutting tool vibration in the three directions (Eq. 6) and the instantaneous thickness of the cut in Eq. 7.
    • The dimensionless state equations of the PD-controlled motion stage without FI in [294] are given by Eq. 14-16. The latter (representing the slipping equilibrium, $z=sgn\left(v\right)g\left(v\right))$ incorporates also the sign of the derivative of $X_{p}$. It is also evidenced in Eq. 24-25.

Robotics

    • In [951], the control law dictates to maintain the control action if and only if the sign of $e$ doesn't agree with the sign of its derivative. The control action can be either an increase or a decrease of the control signal. The increase or decrease of the control signal is realized via the use of fuzzy linguistic rules.
    • In [752], the friction torques and other physical sizes are explicitly modelized based on the sign of the joint velocity.
    • Models based on Coulomb model in [375] indicate that the friction is a function of the velocity sign. The tentative to compensate the friction based on these models can generate limit cycles around reference position or high-frequency vibration due to commutation of the rotor velocity sign for velocities near zero (shattering).
    • New methods, ignoring the produced energy from the velocity sign change, and holding the control force while the velocity is zero, are proposed in [823] for removing the noisy behavior.
    • In [972], knee-on occurred at heel strike, and the damper was programmed to exert a torque proportional to the rotational velocity of the knee joint. Depending on the velocity sign, two different gains were used to control knee rotation for knee flexion and extension.
    • A conventional friction model is utilized in [201] for the robotic hand DLR-HIT II joint. The friction model is expressed as in Eq. 29 while leveraging the sign of the angle's derivative, $\theta'$. In turn, the joint dynamics and its linearization also leverage the derivative sign (Eq. 31), which then merges with the derivative sign to form the derivative's magnitude.
    • The sign of the error derivative is applied in the proposed nonlinear DED in [491] as part of the nonlinear desired error dynamics. It's later used throughout the paper's formulas.
    • The dynamics of the robot in [1005] are modeled in Eq. 4-6. The matrix $C\left(\sigma\right)$ is comprised of the rotational directions' signs that are defined as positive according to the left-hand rule along the $x_{r}$-axis. Further, the sliding and rolling frictional forces acting on the wheel, respectively, which can be found by Eq. 8-9, are defined based on the sign of the vector projection of the wheel velocity relative to the ground $V_{i}$ onto the unit vector along the roller parallel direction.
    • When the external force $\tau_{e}$ in [196] is equal to or greater than the maximum static friction force, the static friction force will equal to the maximum static friction force, the direction is different from the external force. Then, the friction can be described as in Eq. 16, incorporating the sign of the motion velocity. In turn, its sign is also applied in Eq. 17.
    • The Slope Sign Changes (SSC) feature, calculated in Eq. 4 in [424], detects the changes in the slope sign of the s_{EMG} signal and counts them. It is represented based on the signs of the discrete one-sided derivatives.

Machinery

    • Compensation for Coulomb friction at velocity sign changes in [461] is accomplished much more rapidly than conventional methods.
    • In [543], where the velocity sign is changing, rapid pressure increase appears caused by receiver inlet flow decrease, reached as the effect of servo valve SV control.
    • In order to suppress the consideration of variants during optimization in [947], two additional criteria for the curve shape are formulated. First, the radius must be monotonically decreasing from inlet to outlet. Second, the first derivative of the radius must be monotonically increasing from negative values towards zero. An example of a curve that does not satisfy these criteria is shown in Fig. 8 there. The monotony criteria are checked by counting the number of sign changes. The expected number of sign changes for an acceptable curve shape is zero for both derivatives. The component objective function applied on this criterion is a binary step, with which curves with sign changes of the derivatives are penalized with the value $1$.
    • As indicated in [499], typical reasoning systems have three components: a language to represent the trends, a technique to identify the trends, and mapping from trends to operational conditions. The fundamental elements are modeled geometrically as triangles to describe local temporal patterns in data (Figure 1). The parts are defined by the signs of the first and second derivatives, respectively. These elements, also known as triangular episodic representations, have their origin in qualitative reasoning and simulation.
    • Although the bode plot is helpful in the design of suitable controller gains for the proposed torque regulator, a further discussion on the constraints of controller gains is held in [1037] from the viewpoint of stability. The proposed torque regulator is dependent on a triangular-wave carrier which is compared with the controller output. In reality, the function of this carrier is to periodically change the sign of torque slopes based on the result of the comparison. The hysteresis logic in Fig. 3 illustrates it. From Fig. 3, it is understandable that the absolute slope of $T_{c}$ should be smaller than the absolute slope of the triangular wave carrier. Otherwise, the slope sign of $T_{c}$ can never be changed, and the torque signal will eventually be out of control due to the unidirectional increasing or decreasing force.
    • The simulations performed in [597] considered just one value to the friction coefficient, $\mu$ and to the parameter $\lambda$, which represents the expected value of the number of sign changes of the base velocity per unit of time.
    • The jet angular velocity sign change phenomenon is studied in [792]. There are two groups of regions in the shell – rotating counterclockwise and clockwise. It is due to the presence of rifling on the shell's outer surface.
    • The approximation function for non-elastic resistance in [572] should have a part with the velocity sign.
    • The model introduced in [356] can be obtained by replacing the symbol A with the expression $A+A_{0}sgn\left(u\left[k\right]-u\left[k-1\right]\right)$, intending to introduce the velocity sign sensitivity to the behavior of the model which would lead to the asymmetric off-center hysteresis loop formation.
    • Considering the friction force and the moment of inertia in [1038], the dynamic equation of the new accumulator is represented by Equation (14), where the sign of the piston velocity in the fluid chamber is taken into account. In turn, the fluid pressure also depends on this velocity sign. Further, the dynamic equation of the inertial load can be written as Equation (17), which incorporates the sign of the derivative of the intertial load.
    • Both $P_{ch}$ and $F_{ch}$ in [828] can be calculated based on the derivative sign of $\frac{dR}{dP}$, according to equations (42) and (43).

Vehicles Engineering

    • In [73], for stability analysis by the controller in Eq. (11)subject to nonlinearity in by Eq. (15), three different cases are considered where the sign of the derivative $V'$ is studied. For example, under the inequality condition by Eq. (18), $V'$ could have either a positive or negative sign. Let us assume a case where the initial $\omega$ is negative, then Eq. (21) is valid, and Lyapunov stability holds. However, as the positive maximum control input continues to act on, the angular velocity tends to increase in the negative direction further with decreasing quaternion. If such a situation continues, then the constraint equation (Eq. (18)) may no longer be valid. Thus switching in the Lyapunov function derivative sign is expected. Similarly, if the initial angular velocity is positive, Eq. (20) may also produce a $V'>0$ result. Since the angular velocity decreases, switching in the Lyapunov function is also expected when $\omega$ crosses the zero line.
    • The sign of the azimuthal velocity in [133] is chosen with respect to the direction of rotation of ions due to the Lorentz force.
    • The equations of the force terms for the Rudder model are given in Eq. 2-10 in [47]. Eq. 3 and 10 depend on the signs of the surge and sway velocities $u$ and $v$, respectively. In turn, the sign of the sway velocity is modeled per the sign of the longitudinal force's derivative.
    • In [152], the drag coefficient multiplying the velocities and the dry friction coefficient are unknown and must be estimated. It leads to Eq. 9 and 10 for the force and torque. Both leverage the signs of the different velocities in the systems. These signs are used in the differential equations that enable finding the speeds themselves (Eq. 11) and in the auxiliary matrix $G$, Eq. 14, the second time derivative of the tracking error, Eq. 20, 22, 23, and 25.
    • The vehicle Longitudinal Dynamic Model in [357] models its velocity's derivative as its sign function (Eq. 2). The velocity sign is also applied in calculating $N_{f}$ and $N_{r}$.
    • The derivative sign of the torque with respect to the percent of biodiesel in [120] dictates whether it's always or never in the validity domain.

Finite Elements

    • In [516], for both sensor configurations, the linear and spline interpolation methods fail to give a good estimation for the amplitudes of the third and the fourth mode shapes, while the MSBE method provides reasonably good assessment for both of the mode shapes. It is mainly because of the change of the sign of the slope of the mode shape and the height of the structure. The mode shapes of a multi-story building can usually be divided into several linear segments between points where the sign of slope changes. Therefore, unless one middle sensor is placed at each of these locations, the linear and cubic spline interpolation methods will always fail to give a good estimation for the amplitude of the higher modes. To get a good estimation from both interpolation methods, a sensor has to be placed at each floor level where the mode shape's slope sign changes.

Thermal Engineering

    • Since a Dirichlet condition in [181] is imposed at the left boundary for the present test case, using $\Psi\left(\xi\right)$ values at negative $\xi$ does not change the sign of the numerical derivative for a small enough $\delta$. If a Neumann condition was imposed instead at the left boundary, the numerical derivative sign would change for any value of $\delta$.
    • Throughout [1025], the relation between physical sizes, such as the heat flux and the thermal conductivity, is analyzed based on their derivatives' signs.
    • The Couette-Poiseuille flow in [226], even for Newtonian Fluids, Recrit, will depend upon the sign of the imposed pressure gradient.
    • In [1018], an inspection of phasor diagrams that represent velocity fluctuations, pressure, heat release rate, and characteristic wave amplitudes at the flame elicits characteristic features of marginally stable, intrinsic thermoacoustic (ITA) modes. The sign of velocity fluctuations and the sign of the gradient of pressure fluctuations change across the flame. These sign changes result from a reversal of direction of the velocity phasor across the flame, affected by unsteady heat release exactly out-of-phase with respect to upstream velocity fluctuations and of sufficient strength.

Civil Engineering

    • In [60], only the sign of the displacement/velocity matters (the magnitude of velocities and displacement is irrelevant). Hence, the mean value of velocity is an aggregation of the local trends.
    • The formulas that model friction in [55] and other physical sizes explicitly leverage the sign of the velocity and the acceleration.
    • The wbbl thickness in [430] increased linearly during favorable horizontal pressure gradients (i.e., when the sign of the pressure gradient is opposite to the sign of the fluid velocity). The coefficient of determination $R^{2}$ between measurements and a linear fit was usually above $0.9$. When the pressure gradient sign switched, the boundary layer thickness showed a sudden increase. Highly asymmetric waves had wbbl growth rates under the wavefront that were roughly twice as large as under the corresponding wave back.
    • The rebound effect offered by transverse walls in [382] can be numerically considered a change in sign of the velocity immediately after impact and possibly as additional damping.
    • The change in the monotonic behavior (derivative sign) of the network outflow function at a turning point in [41] is reflected as a dramatic change in the arrival rate of the users, which subsequently affects the variation pattern of system accumulation, as well as the outflow.
    • In [426], the defining control laws in Eqs. (1)–(3) provide direction- and displacement-dependent forces based upon the piston location within the device and the sign of piston velocity. To control this semi-active device requires sensors across the device for displacement and velocity. Depending on the signs of displacement and velocity direction, the active orifices are closed or opened. Fig. 2 there shows a step-by-step example of the control mechanism and response for a $2-4$ semiactive viscous $D_{3}$ device under sinusoidal displacement loading.
    • The dynamic behavior of a curved surface slider in [830] is governed by three friction coefficients, relative to the onset of motion, the dynamic phase, and the velocity sign's inversion.
    • In [749], when the specific energy curve's slope is positive, the flow is subcritical. A negative slope indicates supercritical flow. Considering that the sign of the slope of the particular energy curve changes at the critical depth, elevations where the specific energy curve is not continuous or differentiable need be checked, as it might indicate a respective critical depth. More specifically, these elevations are the ending points of the previously defined segments (Figure 8). Suppose the specific energy curve slope at the end of one segment has a different sign than the slope at the beginning of the next segment. In that case, this means that the flow changes regime from subcritical to supercritical or vice versa, and thus the common elevation of the two segments must be of a critical depth.

Agricultural Engineering

    • When the model chosen in [1050] was linear, the yield trend may be classified based on the slope sign. If the slope was negative, yields were always decreasing; thus, they may be classified as “yields collapsed.” There wasn’t any case with a trend that may be classified as “yields collapsed” in our dataset. If the slope of the linear equation was positive, it meant that yields were increasing and thus were classified such areas as “yields increasing.” When the chosen model was quadratic, and if the quadratic term was positive, the trend was classified as “yields increasing.” When the quadratic term was negative, the trend was classified as “yields stagnating.” When the chosen model was quartic, the trend was classified as “yields stagnating.”
    • A Special attention in [693] is paid to the shape of action, estimated as the number of turn changes in the sign of the envelope intensity slope.

Quantum Engineering

    • The monotonicity of the entire set $S_{\alpha}\left(\lambda\right)$ in [836] induces a characteristic of the phase. That is unless the perturbation and the choice of bipartition are fine-tuned. The collective behaviour can be captured succinctly by the sign of the derivative $sign\left[\partial_{\lambda}S_{\alpha}\left(\lambda\right)\right]\forall\alpha$, which remains constant in the topologically disordered phase.
    • [656] finds that, at the phase boundaries between two phases with differing non-trivial topology, the slope of the heat current, with respect to the tuning parameter, changes sign. On the other hand, transitions between a zero and a nonzero FMF phase are tracked by changes in signs or discontinuities in the slope of the heat current. The quasi-energy spectra are completely gapped away from the transitions, and the heat transport is essentially mediated by FMF’s. The high-frequency oscillations in the heat current are due to finite size effects and decrease with increasing $N$. This change in sign of the slope of the heat current with respect to the control parameter effectively tracks the parity of the phase and is valid for any cut in the phase diagram. Since the actual sign of the heat current is determined by the bath parameters, it is not possible to assign a fixed parity to a phase. Instead, the heat current is sensitive only to changes in parity. Consequently, one cannot ascertain whether a given phase has an even or odd number of FMF’s. For specific bath parameters, the heat current can indeed change sign within a given topological phase without a concomitant change in the sign of the slope of the current.

Aerospace Engineering

    • Based on the Figures of Merit developed during the AWS program, an abrupt stall can occur when the slope of the coefficient of WRBM curve changes sign, as illustrated in [400]. The AoA at which the slope changes sign is of particular importance. If, for any of the morphed configurations, the slope of the WRBM curve changes sign at a lower AoA than it does for the F/A-18C, this indicates that the particular wing parameter or parameters being modified may be contributing to abrupt stall.
    • The high entrainment in the near jet field, a unique feature of synthetic jets, is also observed as a change of velocity sign in [422].
    • An interesting observation about the stability coefficients in [36] is that the $Cm_{\alpha}$ term crosses zero as Mach increases for both designs. When the stability derivative values change in sign, this can have interesting implications on aircraft stability.
    • The forces in the $y$ and $z$ directions during the contact with the wall in [1030] are modeled (Eq. 2-3). These are based on the signs of the respective velocities of the right heel.

Data Science

    • The run-length sequence studied in [159] is modeled based on local trends (events of a local maximum) rather than rates.
    • In the local trend analysis method, [999] quantizes the derivative into three possible values indicating the local trend's sign.
    • One of the simplest methods for testing the estimated noise sequence in [140] is the difference-sign test. For this test we count the number of values of $i$ such that $y\left(i\right)>y\left(i-1\right)$, or equivalently the number of times the differenced series $y\left(i\right)-y\left(i-1\right)$ is positive.
    • [699] devises a definitive framework for trends and an algorithm that finds intervals in which the time series trend is monotonous in soft computing theories.
    • The $2$-regime symbolization in [769] is carried out by employing the sign of the first difference.
    • In [531], an optimal threshold corresponds to the start of approximate linearity of the mean excess plot with the sign of the slope, indicating the specific family of the GPD. A positive sign corresponds to the Frechet family, while a negative sign implies the Weibull family.

Materials Science

    • [668] explores the role of stress, and its competition with purely erosive mechanisms (that emphasize the role of surface effects), to determine the sign of the velocity with which the ripple pattern moves across the target plane. Based on this theory, they discuss different situations and make specific testable predictions for the sign change in that velocity.
    • According to the Banerjee's criterion, a negative or positive sign of the slope of the resulting curves in [176] may indicate that the magnetic transition is either first order or second order, respectively. All samples show a change from FM state to PM state of the second order because of the positive slopes of the Arrott curves.
    • The expression of the modified KP operator in [1044] depends on the system's input derivative sign in several ways. First, it serves to distinguish between two cases, as in Eq. 2. It also helps to differentiate instances of the parameter $\xi$ in Eq. 2 (see Eq. 3). Another parameter from this equation, $q$, is the number of sign changes of that derivative.
    • When considering Eq. 18 in [490] with non-zero virgin levels, the slope sign of the channeling spectrum depends on two competing terms. The positive is very small in high-quality crystalline samples. Thus, the slope is usually negative (with a declining yield region between the peak and the end of damage) in most common non-metal situations. However, in irradiated metals such as $N_{i}$, two reasons might cause an overall positive slope:
      • The small scattering factor value, $f$, while non-zero, can significantly reduce the negative term
      • The irradiation-induced defect can reach much deeper depth than the end of displacement profile predicted by SRIM, causing a gentle decrease of defect density, meaning a small $N'\left(z_{m}\right)$.
      In such cases, the negative term may be smaller than positive, causing the overall positive slope.
    • Examining the dominant spd-orbitals along with the phase factors of the wave function in [989], one can determine the state's bonding and anti-bonding characteristics along a specific direction. When strain is applied in that direction, the energy variation with the strain of the state obeys the pattern schematically based on the slope sign.
    • When the friction velocity is constant in [996], the expression of the steady friction force of the LuGre model can be given by Eq. 4, thus incorporating the velocity sign. When the cylinder moves with a uniform speed, the average elastic shape variable in the LuGremodel remains unchanged. That is, when the model becomes steady-state, $v$ is a constant ($\frac{dz\left(t,\zeta\right)}{dt}=0$), then Equation (5) is set to $0$, and $z$ can be expressed by $g\left(v_{r}\right)$ up to the velocity sign. It can, in turn, be incorporated into Eq. 6 and 12 to obtain the steady friction force in Eq. 14, again leveraging the velocity sign.
    • Using a simple RPA argument, [773] shows that the experimental $q\left(T\right)$ can be understood if the electron-phonon coupling (EPC) $g\left(q\right)$, necessary to set coupled electronic and structural modulations, is momentum dependent. In this analysis, the sense of $q\left(T\right)$ variation depends upon the sign of $\frac{\partial g}{\partial q}\left(q\right)$. Further, using a detailed analysis of the low-frequency phonon spectrum of the blue bronze, a new scenario for the q dependent EPC is proposed. In it, $g\left(q\right)$ is due to a momentum-dependent hybridization between the critical phonon branch bearing the Kohn anomaly and other low-lying phonon branches. It allows obtaining a sign of $\frac{\partial g}{\partial q}\left(q\right)$ in agreement with that deduced from the $q\left(T\right)$ analysis.
    • As reported by Banerjee, an inspection of the sign of the slope of the straight line in the Arrott plots gives the nature of the magnetic phase transition order. The magnetic transition is of second-order if the slope is positive and first-order if negative. As is shown in Figure 14 in [829], the curves ($\mu_{0}H/Mvs.M^{2}$) exhibit a positive slope for all samples in the vicinity of $T_{C}$, which indicates that the samples undergo a second-order ferromagnetic-paramagnetic phase transition.

Management Science

    • It is known that there exists a relationship between the sign of the first derivative of the utility function and a stochastic dominance order, named the first-degree stochastic dominance (FSD) order. In the context of [90], the FSD order allows the unambiguous ranking of any two transport alternatives with the exact cost. Further, Proposition 7 proves a link between the SSD order and the sign of the first two successive derivatives of a travelers’ preferences function with respect to travel time. A similar analysis is also conducted with respect to the sign of the third derivative.
    • The signs of the partial derivatives of the price and housing consumption with respect to several parameters are applied in [81] for a qualitative discussion of their monotonic relation.
    • In [689], one could infer from equation 4 the price change, $\frac{dp}{dc_{f}}\left(c\right)$, implied by the efficiency gains, respectively, from the change in markup and the change in marginal costs. Looking at the second term of the total derivative in (4), foreign variable costs' partial derivative of variable expenses is positive and equal to the reduction in costs due to cheaper foreign inputs. It is larger if foreign inputs have spillover effects that allow achieving efficiencies through insourced inputs' substitution. Depending on the sign of the partial derivative of markup by costs, the first term of the right-hand side can either be negative or null (as firms are maximizing profits).
    • The derivative sign of ρε is used inside the integration process in [212], in lemmas 3.1-3.3 there. Further, the sign of the difference velocity $u-v$ is applied throughout the paper in various contexts.

Earth Science

    • In [576], if the boundary current initially has zero relative vorticity and the bottom boundary layer is spatially uniform, the torque is zero. However, suppose the water depth increases offshore. In that case, the bottom stress has to act over increasingly thicker water columns. It produces a bottom torque, resulting in a gain of positive vorticity by the northward flow, even if the curl of the bottom stress is negative. A simple scheme that portrays the slope-induced bottom torque is illustrated in Fig. 1. The sign of the slope-induced torque depends on the bottom slope: within a western boundary current flowing over a steep continental slope, it opposes the bottom stress curl term in the cyclonic side of the stream.
    • From Eq. (4) in [901], the authors derive the probability of a wrong sign of the first derivative. A value of $0.5$ indicates that, on average, the slope information is uninformative. Above $0.5$ it has the wrong sign, and the more below $0.5$, the more reliable the average slope. The nonparametric test calculates the probability of a wrong sign of the first derivative of the individual parameters, which measures the associated variable's significance with the dependent variable. Table 1 presents the probability of a wrong sign of the first derivative for the USLE factors.
    • Among the $Q_{C}$ parameters in [1034] are the along-beam perturbation velocity sign changes.
    • The results in [601] show that VSC (the Velocity Sign Change method) is more effective than VDC, while VDC is more effective than MRF.
    • In [692], the angle sequences of neighbor peaks belonging to curves of the relative intensity have been related to the derivative sign of the corresponding curve of the observation angle.
    • The data in [738] are smoothed, and a variation is evaluated by comparison with the background level. It is done using the change of the derivative sign.
    • Change patterns in [195] should be analyzed in a hybrid manner. According to different spectral gradient signs (qualitatively) and gradient values (quantitatively).
    • To evaluate the turbulence efficiency in influencing the motion of "water particles" in [236], a quadrant analysis is usually used. Suchan analysis investigates the sign of the turbulence components ($u_{0};v_{0}$) with that of the free-stream mean velocity $U_{0}$ according to four conditions that are based on the signs of $u'$ and $U_{0}$ (where $u$ is the velocity). In the classical analysis of the turbulent boundary layers, the four cases almost directly assign each event to a specific dynamics: sweep, ejection, high- and low-speed fluid motion. In the present problem, the variation of the horizontal velocity with the wall distance is not monotone. Hence, the presence of an extreme value of the horizontal velocity close to the bed induces a change in the sign of $\frac{\partial u}{\partial Z}$ and then on the fluctuation components $u_{0};v_{0}$. This sign change does not occur in the same place for horizontal and vertical components. Hence the Reynolds stress may change its sign when the same phenomenon (i.e., suction or injection) is observed at different levels, i.e., above or below the maximum values of the velocity components.
    • Trend analysis systems have three components: a language to represent the trends, a technique to identify the trends, and mapping from trends to operational conditions. The fundamental elements are modeled as triangles to describe local temporal patterns. The elements in [498] are defined by the first and second derivative signs, respectively. They are also known as triangular episodic representations. The fuzzy rule-based solution has been transformed to an equation-based solution by the LE-based trend analysis. In turn, section 3.2 is dedicated to trend analysis.

Sociology

    • The sign of the change in the stratification in [320] is the same as that of the change in the share of high-income students admitted to the elite school. For simplicity, call this share $\gamma$. We are interested in the sign of the partial derivative of g with respect to d to sign the effect of an exogenous change in demand for elite schools on stratification by family income.
    • Propositions 10 and 11 in [954] prove comparative statics of equilibrium effort and utility & welfare, respectively, based on a derivative sign analysis of the functions $x^{*}$ and $U$, respectively.
    • The sign of the derivative indicates the current regime in [570]. While the influence of magnitude requires additional research, the sign suggests a system gaining or losing in entropy. The slope then indicates how close the system is to regime change. If the slope becomes less negative, if there is an inflection, this will change to a growth regime, where complexity and diversity increase. Conversely, if the slope moves from positive to negative across the inflection, the system moves towards a regime of homogenization. This value can be used to determine this can be used as a planning tool.
    • In [662], the sign of the difference depends on the cross-derivative sign. The cross-derivative will be positive if a given grant amount increases stronger performance when performance incentives are higher.
    • After deriving $U$ according to $\tau$, [521] devises (in equation 13) a parameter that dictates the derivative sign. Following, they hold a qualitative discussion regarding the pension scheme preferences of young urban workers.
    • Overall, the results of the linear regression analyses in [281] might only reflect correlations between different variables. They are results of a reduced form estimation. However, these results align with the model prediction on the sign of the partial derivative of Equation (12) with respect to the climatic variation. In this light, the linear regression analysis can be understood as the first step in empirically validating the theoretical predictions of the model.
    • Lemma 1 in [182] suggests conditions to the monotonicity of the function $C(\varphi)$.
    • The derivative sign is used for monotonicity analysis in the proofs of propositions 1.3 and 1.4 in [234].
    • Table 2 in [415], which summarizes the model input parameters' influence, comprises the respective partial derivatives signs.

Political Science

    • Table 1 in [943] reports the comparative static properties of $k^{*}$. The first row shows that when $A$ is more likely to win the election and the war as his fighting effectiveness rises, more power is allocated to the election winner ($A$). On the other hand, if $A$ is less likely to win the election, but his fighting effectiveness rises, less power is allocated to the election winner (likely to be $B$) to give $A$ the incentive to participate in the power-sharing arrangement, a result that accords well with intuition. The derivative signs in the second row indicate when $A$ is the likely election winner, an increase in his electoral effectiveness, which reduces the probability that B may win the election even further, is followed by an increase in the rents given to the election loser. On the other hand, if $B$ is the likely election winner, an increase in the electoral effectiveness is accompanied by more powers for the election winner, as both groups now see the election offering them a way to gain the rents of office. The third row presents the effect of an increase in the destructive effect of war. It shows that irrespective of whoever is more likely to win the civil war and the election, an increase in the destructiveness of war induces both parties to award more office rents to the election loser to avoid war.
    • In the Competition Effect analysis in [432], for any fixed cost distribution and cost mobilization function, turnout depends only on the marginal benefit (henceforth $M_{B}$) and increases with it. Hence, $M_{B}$ is studied as a proxy for turnout $T$. Fixing the institutional setting $\gamma$, the authors focus only on the sign of the derivative with respect to $Q$.
    • In [8], the sign below each argument in (10), which indicates how the equilibrium wages change with respect to change in that particular argument, follows from (7) and (8) (the sign of the partial derivative). It is followed by a qualitative analysis that analyzes these signs.
    • The negative sign of unemployment in [497] reflects that the withdrawal effect dominates the mobilization effect. It is somewhat unexpected since vote-buying to vulnerable people was widespread in some Argentinian provinces, implying a positive correlation between unemployed (mostly vulnerable people) and turnout. The negative sign of the rate of growth of crime is also surprising. It indicates that withdrawal dominates mobilization. A priori, we expected that people would try to use the electoral instrument to change the increasing levels of crime prevalent in most of the districts of Argentina during most of the period under study.

Trade

    • Proposition 6 in [881] proves that the derivative $\partial/\partial\lambda\left(\frac{V_{H}}{V_{F}}\right)$ changes its sign not morethan twice for all $\lambda\in(0,1)$. Therefore there is at most one three values $\lambda\in(0,1)$ yielding welfare equalization $V_{H}\left(\lambda\right)=V_{F}\left(\lambda\right)$. Further, as a consequence from corollary 2, $F\left(\varphi,\rho,\mu,\alpha\right)$ is strictly increasing with respect to $\mu$, i.e. $\frac{\partial F}{\partial\mu}>0$ for all admissible arguments. Thus by the Implicit Function Theorem there exists differentiable function $\mu_{B}\left(\rho,\alpha,\varphi\right)$ such that $\frac{\partial\mu}{\partial\alpha}<0$, $\frac{\partial\mu}{\partial\varphi}<0$, because $F\left(\varphi,\rho,\mu,\alpha\right)$ increases with respect to $\alpha$ and $\varphi$.
    • In [465], because of the positive sign of the derivative in (21), a reduction in $\theta_{\tau}$ by increasing $\tau$ and by reducing the share of exporters in the economy increases the average profits for entering firms $\pi$ in (22) thus increasing entry and ultimately leading to a higher equilibrium number of firms. Moreover, a trade-induced increase in competition reallocates resources from the homogeneous good to all varieties (exporters and non-exporters) in the differentiated sector. It has an additional positive effect on the average profits and induces more entry. A larger $n$ then reduces the domestic markup $\frac{1}{\theta}$ and raises the domestic cutoff $z^{*}$ hereby forcing the least productive domestic firms to exit. Finally, a higher n also strengthens the reduction in the export markup produced by trade liberalization, thus further increasing the export cutoff $z_{x}^{*}$.
    • In [187], on the technical side, there are two obvious candidates for further research. The first involves extending the model to three or more goods, and one imagines that many of the results in Section 5 will go through provided that the best response functions are increasing. To show the latter, one will have to grapple with quasiconcavity and the sign of some cross partial derivatives.

Economic Systems

    • To see the effects of the parameters on location, [569] obtains the $V$ derivative for each of them: if the derivative sign is positive (negative), then increases in the parameter favor dispersion (agglomeration). It can be verified that $\frac{\partial V}{\partial t_{1m}}$ and $\frac{\partial V}{\partial t_{1a}}$ are both positive, showing that a tax increase in region 1 favors the disappearance of the agglomeration that is present there. Further, $\frac{\partial V}{\partial t_{2m}}$, $\frac{\partial V}{\partial t_{2a}}$ are both negative in such a way that an increase in taxes in region 2 helps to maintain the initial agglomeration in region 1. These results are in line with the literature on tax abatement. The different regional or local jurisdictions use this mechanism as an instrument to attract firms to their territory.
    • System (5) in [169] tells us that the sign of the derivative of $y$ with respect to $\omega$ equals that of the second partial derivative of $\pi$ with respect to $y$ and $s$. This fact is applied throughout the qualitative discussions in the paper.
    • Proposition 1 in [501] proves that the second partial derivative of $U$ with respect to $K$ and $\sigma$ is positive, based on the positive derivative sign of the trace term's cross partial derivative. Similarly, proposition 4 proves that an increase in risk aversion $\rho$ increases the dispersion of funds' portfolio returns. Proposition 5 proves that an increase in aggregate shock variance increases the difference between an informed investor's expected certainty equivalent return and an uninformed investor's expected certainty equivalent return.
    • Proposition 1 in [493] proves that for a given initial stock of capital investment, ambiguity aversion tends to decrease the agent's optimal production level. It does so by analyzing the sign of covariance given by the derivative of $\Lambda$ with respect to $\theta$.
    • In the section "Comparative statics relation between $I$ and $H$" in [571], an extensive qualitative analysis is made regarding the derivative sign of the investment and its qualitative consequences.
    • The importance of three-way interactions in [554] also follows from the comparative static effects of the weight environment in equation 3.3. The authors find that, for a given effort level, a marginal increase in the weight environment affects the transition probabilities where size and sign of the effect depend on communication efforts and weight environment $\Delta$. As the sign of the first factor of equation (3.3) is always positive, the sign of the partial derivative is determined by the second factor. Independent of the parents' perception type, the directional effects of an increase in $\Delta$ on the respective (conditional) perception probabilities of children directly follow from our assumptions on $q_{U}$ and $q_{O}$. More specifically, the likelihood of child over(under)-perception falls (increases) with $\Delta$. The effect on the probability of correct weight perception cannot be signed.

Environmental Economics

    • [522] defines ratios between different functions' derivatives to analyze the relationship between their change directions. For example, The derivative of $SV$ with respect to technology (equation 3.2.15) is positive if there is an energy augmenting technological change where a lower level of energy is used to produce the same output and profit. With technological change requiring more energy, the derivative sign is negative, and in the case of energy-neutral technology, the derivative is zero. This derivative helps us to find out the short-run average change rate of the energy SV with respect to technology changes, as $\varepsilon_{SV_{t}}$ (equation 3.2.16), which is expected to be positive when the derivative of $SV$ with respect to technology is positive. Over time, the overall impact of technology changes is likely to be in the same direction but greater in the short run.
    • The sign of $\frac{\partial r}{\partial\rho}$ in the general model in [484] is studied extensively in section 2.3.
    • The proof of proposition 5 in [95] applies the monotonicity of the function $\varphi^{*}$ by evaluating the sign of its derivative.

Behavioral economics

    • In order to measure the slope of the reaction function, [930] uses agent $i$'s belief about agent j's initial effort. In a subset of the data ($n=110$), the authors elicited agents' beliefs about their co-agent's initial effort decision. Given the belief, we can observe two points on an agent's reaction function if the belief was wrong. It provides a direct measure of the sign of the slope of a monotonic reaction function by estimating the function $\Delta e_{i}$, where $e'_{j}$ denotes agent $i$'s belief about $j$'s initial effort.
    • The result in [700] shows that the time spent at work is negatively related to school enrolment, as indicated by the sign of the slope coefficient. It implies that the higher the time a child spends at work, the lower the enrolment rate.
    • Lemmas 1 and 2 in [329] state claims regarding the monotonic relation between the degree of different types of bankers' overconfidence and the duration of the optimal term. They do so by analyzing the respective derivative sign.
    • Lemmas 5.2 and 5.3 in [3] prove results on the signs of the partial derivatives of $f$ and $z$ with respect to $\alpha$. They are then used to prove monotonicity properties in other theorems.
    • In the proof of propositions 5 and 6 in [621], the implications of different signs of the derivative $\Omega_{c}$ and $\Omega_{s}$ are analyzed qualitatively.
    • In [835], given that $\frac{dP1}{da2}<0$, the sign of the strategic effect is negative when $\frac{da_{2}}{d\lambda}>0$ and positive when $\frac{da_{2}}{d\lambda}<0$. Hence, an increase in overconfidence makes the player worse off when it raises the effort of the rational player.

Risk

    • Empirical evidence in [623] shows that the sign of the slope may change with the level of the wages. It is especially true in a household contest (i.e., in a two-individual economy where the two subjects strictly interact). What happens in such an environment is that the sign of $\frac{\partial h_{i}}{\partial w_{i}}$ changes both with the level of and with the level of $w_{i}$.
    • In [59], the importance of global and country-specific risk in explaining sovereign credit risk varies with the sign of the slope of the term structure and the duration of its inversion. A model shows that global uncertainty shocks determine spread changes when the slope is positive, and domestic shocks are more critical when the slope is negative.
    • In table 1, [603] illustrates the effect of risk parameters on systemic risk measures. Panel A presents possible signs of the derivatives. A superscript n marks cases where the sign applies under normal conditions. Only very implausible parameters constellations specified in the appendix would generate the opposite sign. In the single instance of “$+/–$”, the partial derivative can be negative under normal conditions, but only when the partial derivative to $\sigma(RS)$ is negative, too. Panel B reports the partial derivatives’ signs for the base case. Panel C reports signs for a system with a dominant bank of high systematic risk.
    • Taking a closer look at the data and in particular at the slope of the VRP term structure, [76] finds that this meager performance can be explained as follows. As long as realized variance is low, i.e., outside the financial crisis, the strategy yields a positive payoff equal to the difference between the three-month and the six-month VRP. This difference becomes negative during the financial crisis, causing losses for the portfolio holder and canceling the previous gains. Therefore, we can interpret a switch in the sign of the slope of the VRP term structure as awarning that the future realized variance might increase, as a result of which the forward variance risk premium is no longer positive. If one leaves the investment on hold until the slope switches sign again, one can avoid some of the losses of the former strategy and generate a Sharpe ratio of $0.46$. Changing position from selling future variance into buying future variance whenever the slope of the VRP term structure is negative further enhances the Sharpe ratio, which reaches $0.77$.
    • Propositions 10 and 11 in [26] both state claims about functions' trends: the increase in leverage and systemic risk is given by certain conditions.
    • A well-behaved $v\left(\cdot\right)$ is defined in [262] as the scenario where the slope of $\alpha\left(R\right)$ changes sign at most once. All results in Proposition 1 are now readily obtained conditional on this scenario. Within the proof of this proposition, further trend analyses are conducted based on the derivative sign of $\alpha$.
    • In [420], if a candidate variable passes both stages, the square's color is determined by the sign of the sum of the slope coefficients in the first stage. This distinction turns out to be crucial for the interpretation of the results.
    • Hypotheses 1 in [460] is about the monotonicity of the risk with respect to the price, and hypothesis 2 is about the monotonicity of the cost with respect to the buyer's and seller's risk aversion. Their proofs are via the signs of the respective partial derivatives.
    • Table 1 in [134] lists the derivatives $\frac{dy^{*}}{dx}$ of the column variables $y$ with respect to the row variables $x$ when all other row variables are held constant. A qualitative comparative analysis follows.

Insurance

    • In [1049], a positive trend of the variable $\alpha$, denoted with $d\alpha>0$, represents an increased level of cost-sharing and $d\alpha<0$, an increase in subsidization of LTC. The signs of the first and second derivatives of the expected utility with respect to the amount of private insurance are used to estimate $sgn\left(\frac{dI}{de}\right)$, in section 2.
    • The first condition in definition 1 in [397] is necessary and sufficient for the $\left(n-1\right)$ first moments of $G$ and $F$ to coincide. The second condition is sufficient (but not necessary) for the nth moment of $F$ sign adjusted by $(-1)^{n}$ to exceed the $n^{th}$ moment of $G$ sign adjusted by $(-1)^{n}$. In the expected utility model, preferences over $n^{\text{th}}$-degree changes in risk in the sense of Ekern are identified by the signs of subsequent derivatives of the utility function, which motivates the definition of $n^{\text{th}}$ degree risk adversity and the following theorem.
    • The signs of the derivatives of $x$ and $p$ are used to prove proposition 3 in [763].
    • In the section on empricial tests for selection and frictions in [970], the sign of the slope of the average cost curve is a test for selection on unobservable determinants of natural disaster risk. If the market is adversely selected, homeowners' costs are positively correlated with willingness to pay, so infra-marginal homeowners are costlier to insure than marginal individuals. In this case, the derivative is positive because lower-cost individuals cease to purchase insurance at higher prices. Further, natural disaster insurance markets are adversely selected if adapted houses are required to be elevated both less costly and less likely to be insured, conditional on prices. In terms of the model, this is equivalent to testing for negative derivatives of both $AC$ and $s$.

Macroeconomics

    • A key issue on the demand side in [138] is whether the $IS$ curve is upward or downward sloping – whether declines in profit share are associated with declines or increases in output. The sign of equation (7) determines these relationships. A qualitative analysis of the signs of the components of this equation follows.
    • General functional forms cannot be used in the conditions of Legros and Newman directly to verify whether assortative matching will occur since it is hard to verify them. Instead, [377] uses the implicit function theorem and relies on the cross-derivative sign to directly characterize the conditions for sub- or super-modularity of joint payoffs. Further, in corollary 1 to proposition 3, the second derivative sign proves that the join surplus is super-modular in the skill levels.
    • The time-series of the logarithmic returns shown in Fig. 6a in [245] must first be mapped in a series of events as shown in Fig. 6b. One event is defined as successive instants in the original time series having the same derivative sign, either positive or negative. Each time the derivative changes sign, a new event starts. In the continuous limit, events would correspond to the instants in the time series with vanishing first-derivative.
    • The phase diagram in figure 1 in [599] determines three regions where the functions $u\left(z\right)$ and $p\left(z\right)$ change behavior according to their derivative sign. The only positive solutions to the problem must stay in the third region, where both functions decrease the entire $\left(0,1\right)$ interval. More precisely, their path develops in the area that is dotted in the figure. Proposition 3 characterizes the marginal value of money when $\mu$ is constant, based on the derivative signs of $p$ and $u$.
    • The signs of the reaction function slopes in [67] are the same as the signs of $D$ and $W$, respectively. If $D$ and $W$ are both positive, each best response function is upward sloping (strategic complements); if $D$ and $W$ are negative, each best response function is downward sloping (strategic substitutes). If $D$ and $W$ take on opposite signs, the best response functions differ in the sign of their slopes.
    • The qualitative solution in [636] is reduced only to the definition of the time derivative sign (increases, decreases, or remains unchanged). This work is limited to the analysis of exclusively qualitative problem-solving, as it is the most general.
    • In its proof, the formulation of Proposition 2 in [102] is translated to the signs of the partial derivatives of the tax with respect to the different types of borrowing.
    • In equation (13), [188] calculates the sign of $\beta'$. It is later applied in propositions about the expected treatment-control health quality difference given some monotonicity assumptions.
    • The monotonicity and concavity of the BB-SSLD curve in [649] are studied extensively based on the signs of its first and second derivatives.
    • Throughout [298], the local monotonicity, as expressed by partial derivatives' signs, is applied to prove several results, and a qualitative discussion follows. The sign portion of the gradient is often the only necessary information for the debate, and the information regarding the magnitude is discarded.
    • In [335], $Y_{2}$ increases with $M_{1}$ only if the positive influence ofthe middle term is stronger than the negative influence of the last term.

Taxation

    • Based on derivatives sign analysis, it is shown in [729] that at the low-income report equilibrium, a tax rate increase results in more income concealed from the tax authority.
    • Table 1 in [109] lists the derivatives $\frac{dy^{*}}{dx}$ of the column variables $y$ with respect to the row variables $x$ when all other row variables are held constant. For example, the top right positive sign indicates that $\frac{d_{i}^{*}}{dn}|v,m,g,I,<0$. Further, proposition 5 states that government enforcement and service provision increase rebel violence, ceteris paribus. Its proof is based on the partial derivative signs analysis of $B$ and $EU$.
    • The theoretical model in [18] provides the following testable hypotheses regarding the sign on the coefficients from equation 18 there. The coefficient representing the horizontal interaction, $t\left(-i\right)$, is expected to be positive on average based on equation 10. Diagonal tax competition represented by $\tau\left(i,-j\right)$ should be positive on average because the diagonal interaction is similar in sign to a horizontal interaction in the local region of the border from equation 11. The diagonal reaction will be affected by distance through $d\left(i\right)\tau\left(i,-j\right)$, and the effect is expected to be negative as the lower branch of equation 11 is less than the upper branch.
    • [213] shows that the sign of the slope of the reaction function of the home state to foreign state tax policy depends on the income elasticity of private goods relative to public goods. To develop an intuition for this critical result, consider the case when the capital tax rate for a neighboring state rises. In turn, mobile capital (eventually) flows into the state, and the tax base increases. They further show that the slope of the reaction function can be positive (“racing to the bottom”) or negative (“riding on a seesaw”) and that the sign of this slope depends on the sign of one critical parameter: the income elasticity of private goods relative to public goods.
    • Due to the complex structure of Equation (29) in [552], deriving necessary conditions with respect to the sign of the partial derivative does not yield significant expressions. Nevertheless, it is possible to observe that the wage tax rate positively affects the offered fixed salary whenever the first two addends exceed the third one. It can be summarized as corollary 2 there.
    • Proposition 2 in [283] analyzes the monotonicity properties of the hidden income with respect to tax parameters, based on its respective partial derivative signs.
    • Appendix D in [694] is dedicated to proving results on algebraic signs of selected partial derivatives.
    • Propositions 3, 4, and 6 in [122] state claims regarding the monotonic relations between parameters such as the tax rate and tax revenue. On top of that, an extensive qualitative monotonicity discussion is held in sections 3 and 4 there.
    • Theorems 1 and 3 in [873] prove claims regarding the monotonicity of the provision of the public goods with respect to the tax rate and the degree of waste, respectively. Their proofs are based on an analysis of the signs of the partial derivatives.

Public Finance

    • In section 4 there, [314] holds an extensive analysis regarding the sign of the steady-state rate of change of the present value of public debt.
    • When the yield curve is downward-sloping in [231], shortening the maturity structure increases the government discount rate, generating fiscal inflation and expanding output. The opposite results obtain when the yield curve is upward-sloping.
    • Lemma 6 and corollary 2 in [146] prove sufficient conditions for the derivative sign of $U$ and $\Phi$ with respect to $\theta$, respectively.
    • Even though the propositions in [423] don't mention trends directly, their proofs apply the monotonicity of parameters such as $\Gamma$ and $q^{u}$ by assuring their derivative signs are constant.
    • Proposition 4 in [186] proves results on the sign of the derivative of the inflation eigenvalue with respect to $\varepsilon$. Further, once it is clear that the discretion equilibrium is not a relevant theory for stabilization policy, the empirical issue is the measurement of the sign of the slope of the the new-Keynesian Phillips curve. If it turns out to be negative, the transmission mechanism corresponds to an accelerationist Phillips curve instead of the new-Keynesian Phillips curve. Unfortunately, nearly 50 of the estimates have a positive sign in a large number of estimations. Once this sign is known, the optimal response of the policy instrument to inflation will have the opposite sign under quasi-commitment.
    • Corollary 1 in [534] proves the cross-sectional average of agents' bond holdings is unbounded due to monotonicity considerations via the sign of the partial derivative. Further, proposition 4 heavily relies on function's partial derivatives' signs when proving that W increasing in $\alpha$ leads to its decrease in $q$.

Corporate Finance

    • The initial information of the illustrative model in [157] included the qualitative magnitudes of the variables in the initial state determined using the values of the 'as-is' IEP (intermediate landmarks). For example, the circle representing the C_{t} variable is positioned at the milestone of 183 min. The initial information also includes the derivative sign for the $C_{t}$, which decreases according to the simulation results of the to-be business process. The propagation of the derivative of the $C_{t}$ across the proportionalities in the model enables us to deduce that $O_{u}$ and $O_{p}$ have increasing derivative signs because they vary in the opposite direction of $C_{t}$.
    • [533] assesses the derivative signs of several parameters. Based on them, they hold the following qualitative discussion. Equation 11 is quite similar to that of Lavoie. A higher interest rate does not uniformly affect the rate of capital accumulation. The investment function (equation (6)) shows that an increase in the interest rate negatively affects the rate of capital accumulation. However, the saving function (equation (5)) indicates that an increase in the interest rate raises rentier capitalists' earnings and, in turn, their consumption expenditures. An increase in consumption expenditures immediately raises the rate of capacity utilization and, depending on the sign, that is, provided $\left(\frac{\beta}{h}+\delta\right)\tau-\sigma\theta$ is positive, the rate of capital accumulation would rise. Lavoie called this situation the "puzzling case." Hein called the opposite problem an increase in the interest rate leading to a decrease in the rate of capital accumulation, the "normal case."
    • The second-order conditions in [437] state that two of the terms in equation 16 are negative. Consequently, one may establish the relationship between the slopes of these two firms based on the other two. The LMF's R&D reaction curve moves to the right as the LMF's government R&D subsidy increases if $\eta<1$ (i.e., $gx_{s}>0$) while it moves to the left if $\eta>1$ (i.e., $gx_{s}<0$). Following, the authors analyze the different cases according to the various relationships between the R&D reaction curves of both firms in the form of the derivatives' signs.

Financial markets

    • The signs of the first-order partial derivatives of $RSC$, $BC$, $x$, and $y$ in [800], are qualitatively analyzed throughout the paper. They are also summarized in tables 4-7, respectively.
    • Theorem 5 in [615] proves that $\rho^{*}\left(n\right)$ approaches infinity by first establishing that the sign of $\frac{\partial F}{\partial n}$ is positive, rendering $F$ increasing with $n$.
    • Previous literature suggested that the key factor is the sign of the first derivative of the utility function with respect to the perceived type. It is contradicted by [658]'s findings, which focus on the second derivative sign.
    • Derivative signs analysis in [425] leads to conclusions on monotonic relation between the different discussed conditions. For example, a higher network charge decreases consumers' willingness to pay for services leads to a reduction of investment into service quality.
    • Proposition 1 in [794], which studies the effect of variation margin gain haircutting on trading, proves the location of peaks via partial derivative signs analysis.
    • Proposition A.2 in [310] states that the equally weighted market Sharpe ratio increases with total risk in general equilibrium given monotonicity conditions on the function $\sigma$, proved in proposition 3.4. The monotonicity discussion is introduced and confirmed with partial derivatives signs analysis.
    • From equation 4.16, [418] shows that the demand for each newspaper is increasing in the number of advertisers ($\frac{\partial D_{i}}{\partial k}>0$). The authors find that the sign of the partial derivative with respect to location depends on the size of the transportation cost $t$. To interpret this result, they make use of the observation that demand is decreasing in $t$ ($\left(\frac{\partial D_{i}}{\partial t}\right)<0$). It is the effect Kim and Serfes identified as the aggregate demand creation effect.
    • The sign of the second derivative of $p^{*}$ and that of the partial derivative of $\theta^{*}$ with respect to t is used in the proofs of several propositions in [359].
    • In the section entitled empricial finding and analysis in [520] dedicates an extensive analysis to the slope sign of many of the parameters in the section entitled empirical finding and analysis.
    • Proposition 6 in [882] calculates the slope sign of the RHS for the comparative statics via a detailed analysis of their derivatives.
    • Proposition 1 in [702] states the interpretation of the different possible signs of the derivative of $t$. Lemma 1 states that for any given vector of product complexities, the derivative signs of different variables agree.
    • Table 1 in [732] displays the sign of the partial derivatives for the entrepreneur’s equity share, expected investment return, entrepreneur effort, and financier effort (columns) with respect to various model parameters (rows). When $\alpha_{F}>\alpha_{F}^{*}$ holds, the sign of the partial derivative as is given in the cell.
    • Corollaries 1 and 2 in [880] prove claims about the monotonicity of the Incumbent's market with respect to the switching costs and the cross-group network benefits, respectively.
    • [429] conducts a comparative statics analysis to understand how parental bequests and future wages affect the thresholds of educational frictions. Note that the threshold is continuous and differentiable with respect to parental investment $x_{ij}\left(t\right)$, and future wages. Consider $w_{ij}\left(t+1\right)$ the wage for the employment type which requires a relatively lower level of educational attainment (numerator), and $w_{i'j}\left(t+1\right)$ the wage for the employment type which requires a higher level of educational attainment (denominator). The comparative statics reveal the following: $\frac{\partial\tau_{ij}\left(t\right)}{\partial x_{ij}\left(t\right)}>0,\frac{\partial\tau_{ij}\left(t\right)}{\partial w_{ij}\left(t+1\right)}<0$ and $\frac{\partial\tau_{ij}\left(t\right)}{\partial w_{i'j}\left(t+1\right)}>0$. In other words, these findings imply that higher bequests and a rising wage in $i'$ raise the threshold of educational frictions, implying that the marginal individual faces higher constraints. It, in turn, means that upward mobility is more likely to occur as more individuals will enter the sector requiring a higher level of education. On the other hand, if wages in $i$ are rising, then the marginal individual has a lower level of educational frictions, and thus less upward mobility occurs.
    • In the section "explanatory variables" in [144], the predicted signs of each regressor are analyzed and summarized based on previous works.

Employment

    • In the empirical counterpart of equation (1) in [241], the sign of the reference wage is a prior ambiguous. Generally, if the role of future internal prospects is relevant and the latter are permeable to the outside peer group, a non-negative effect of the reference wage is more likely. On the contrary, where commitment is less dependent on the expected rewards and/or these are somehow insulated from the outside market, the usual negative coefficient on the reference wage is likely to prevail. On the whole, we expect internal monetary prospects to be particularly relevant for work attitudes related to solid commitment and less so for loose commitment work attitudes. Further, in section 3.5 there, productivity, rents, and amenities are analyzed based on a classification of workplace practices by total derivative sign, summarized in table 1 there.
    • Proposition 4 in [966] proves that both uncertainties on the selling price and the emerging BTL technology development decrease the capacity choice of the decision-maker in the pre-treatment process. It does so also based on a partial derivative sign analysis of $\Delta\left(\theta\right)$ and $\Lambda\left(\theta\right)$ with respect to the variable $\theta$.
    • After calculating $\frac{dz}{d\omega}$, [849] continues to discuss the stability of the system. The authors investigate the sign of $\frac{dz}{d\omega}$ based on a qualitative analysis of the relation between the wages and the profit share.
    • Mathematically, the sign of the slope (or derivative) of the average productivity is determined in [278] by the difference/ratio between the average and marginal productivity. If $r\left(H\right)<1$, we necessarily have a negative slope for the average productivity, meaning that we are beyond its maximum. And marginal productivity of hours is declining.
    • To understand the formula of the sign of the slope of the transition path, equation (13) in [168] implies that aggregate firm profits and the number of vacancies must move in the same direction along the equilibrium path. However, aggregate firms' profits depend positively on the number of jobs and negatively on the wage paid to workers. Both are inversely related to the unemployment rate. The slope of the transition path then depends on how responsive wages are to changes in the unemployment rate.
    • All the results in [284] regard the monotonic behavior of $h$, $F$, and $B$ with respect to their parameters. They're proved based on the respective partial derivatives signs.

Economic Growth

    • A total differentiation of equation (3) in [118] yields the derivative of the output with respect to the capital gain, and qualitative analysis of its sign follows.
    • [914] defined the total by the law of velocities change and their correlation and by the sign of change - velocity increase or velocity decrease.
    • The effect of a change in $z$ on equilibrium employment and distribution in [927] depends on the partial derivative sign. If it is positive, that is, if wages are more responsive than productivity to the employment rate, an increase in labor market protection lowers employment and productivity growth while raising the wage share. Vice versa, if the sign is negative, an increase in $z$ has a positive effect on equilibrium employment but an adverse effect on the labor share. Either way, workers face a trade-off between jobs and productivity on one end and the wage share on the other. Such exchange contrasts with the steady-state implications of the Goodwin model, where an increase in employment protection would reduce employment but would have no impact on income distribution.
    • In formula 20 in [724], if the Keynesian multiplier stability condition holds, the numerator is positive, and the sign of the slope of the $IS$ depends exclusively on the sign of the denominator. The authors then discuss the sign of the numerator and the denominator due to workers' ownership and wage share. Furthermore, a discussion is held regarding the sign of the rate of other parameters such as the locus, capitalist managers' share of the wage bill, and the normal capacity utilization.
    • [170] Applies the signs of the derivatives in the Jacobian matrix for a qualitative monotonicity analysis in the long-run equilibrium discussion.
    • Throughout the discussion on the BGP equilibrium with creative class competition, [83] analyzes the monotonicity of the R&D expenditures with respect to other parameters extensively based on the signs of its partial derivatives.
    • To analyse the behaviour in the long term, and therefore the stability of the model, [746] calculates its derivative with respect to time $\frac{dG}{dt}$. The sign of the derivative depends solely on the substitution parameter $\alpha$. Thus it is obtained that if $\alpha\rightarrow0$ (that is when the elasticity of substitution is elasticity of substitution $1$), the rates of variation of capital and production are constant over time. If there is substitution in production ($\sigma>1;-1<\alpha<0$), the rates of variation of capital and product are increasing over time. If there is no substitution in production ($0<\sigma<1;\alpha>0$), the rates of variation of capital and product are decreasing over time and tend to be zero in the long term.
    • The sign of the partial derivative of net exports with respect to gross exports in [255] depends on the precise value of import propensity ($m$) compared to the critical value of import propensity ($m_{c}$). Thus, the sign of the partial derivative would be ambiguous as there is no guarantee that the import propensity would be lower than this critical value.
    • The effect of integration and scale on the sign of the partial effects is studied in [718].
    • In [346], the sign of the partial derivative of child demand with respect to human capital is negative so long as $m_{2}$ is less than $50\%$, which must be valid outside the fourteenth century. The rising elasticity of substitution means the effect of human capital reducing child demand increases with economic development. This human capital effect is one contributor to the fertility transition. As $m_{2}$ falls, there is a greater effect in absolute value on the demand for children from a rise in human capital.

Economic Inequality

    • Proposition 4 in [172] proves monotonicity properties of the function $\omega_{2}$ based on the agent risk. It is established based on its partial derivative signs analysis.
    • [683] shows that the tension between non-rivalness and appropriability of R&D output is crucial for the sign of the slope of the skill-demand curve. A necessary condition for an upward sloping demand curve is the ability of firms to appropriate the intertemporal returns from non-production activities.
    • In the theoretical discussion about fairness, mobility and position in [107], the signs of the partial derivatives of $\gamma$ with respect to $e$, $M$, and $P$, respectively, help establish qualitative conclusions.

Investments

    • In [167], some interesting patterns are found from the implied volatility quotes. One of them is that the curvature of the implied volatility smile is relatively stable, but the slope of the smile varies significantly over time. The slope sign switches several times in the sample. Therefore, although the risk-neutral distribution of the currency return exhibits persistent fat-tail behavior, the risk-neutral skewness of the distribution experiences substantial time variation. It can be positive or negative on any given date.
    • In [933], a familiar expression shows that the sign of the slope of the savings schedule in $\left\{ s,r\right\}$ space depends on the intertemporal elasticity of substitution $\frac{1}{\theta}$. When this substitution elasticity is high (i.e., above unity), a fall in interest rates causes a fallin saving, as agents substitute away from relatively expensive retirement consumption. Infinite-horizon households pin the interest rate down at $r=\frac{1}{\beta}-1$ and are thus equivalent to OLG households with linear period utility functions. When the elasticity is below unity, retirement saving is akin to a Giffen good: lower interest rates raise the savings rate out of wages, as the desire to offset the negative effect of lower interest rates on retirement consumption outweighs the higher its price. When the elasticity is precisely one, these two effects cancel, and the savings schedule is vertical.
    • As illustrated in [580], S&P-GSCI carries out rolling of the underlying futures contracts once each month, from the fifth to the ninth business day. On each day, $20\%$ of the current portfolio is rolled over in a process commonly known as the Goldman roll. The S&P-GSCI roll yield for each commodity is defined as the difference between the average purchasing price of the new futures contracts and the average selling price of the old futures contracts. In essence, it is an indicator of the sign of the slope of the futures term structure.
    • Throughout [895], the derivative calculation is often a step towards evaluating functions' trends, which in turn help establish a qualitative discussion on the relationship between parameters.
    • From a practical point of view, the asymptotic slope is a useful ingredient for model calibration in [757]: E.g., if the market slope is negative, then a simple constraint on the model parameters forces the (asymptotic) model slope to be negative, too. The authors' numerical tests show that the slope sign is reliably identified by a first-order asymptotic approximation, even if the maturity is not short. With the authors' formulas, the model parameters determine the asymptotic slope (and its sign). For instance, the slope of the NIG (Normal Inverse Gaussian) model is positive if and only if the skewness parameter satisfies $\beta>-12$.
    • Annex 1.3 in [264] presents the sign of the derivative of equity value with regard to $z$. It is negative. We know that $z$ increases with the additional growth in asset value $\eta$. This growth in asset value first benefits the debt value. The authors have shown that it induces a mechanism of transfer of value to creditors. The equity value is also indirectly harmed. The mechanism is the following: an increase in the asset growth rate will also increase the default threshold value, $A_{b}$. From Equation (10) there, it is easy to show that $\frac{dE}{dA_{b}}$ is negative. The economic sense is straightforward: A rise in the threshold triggering a zero equity value will result in a lower equity value.
    • The standard Keynesian stability condition, as stated in [82], is that savings are more responsive to changes in incapacity utilization than investment, which translates into $I_{u} < s_{h}$. This assumption ensures that the denominator in the expression for the local slope of the $IS$ curve is positive. Hence, the sign of the slope of the $IS$ curve depends on the sign of the numerator. When the numerator is negative, i.e., $I_{h}-s_{u} < 0$, the $IS$ curve is negatively sloped, and the economy is in a stagnationist (wage-led) regime. An increase in the profit share is associated with a decline in the capacity utilization rate (because the local slope of the $IS$ curve is negative). When the opposite happens, i.e., $I_{h}-s_{u}>0$, the $IS$ curve is positively sloped, and the economy is in an exhilaration (profit-led) regime. An increase in the profit share is associated with an increase in the capacity utilization rate.
    • Proposition 2.2.5 in [710] states that the optimal threshold of the option to invest in the second project stage, $P_{2}^{\ast}$, is increasing in $\sigma$. It also proves that the first price threshold, $P_{1}^{\ast}$, is increasing in $\sigma$ if $P_{1}^{\ast}\geq P_{2}^{\ast}$. If $P_{1}^{\ast} < P_{2}^{\ast}$, then $P_{1}^{\ast}$ is increasing in $\sigma$ if and only if a provided condition is met. It is proved with the sign of its partial derivative.
    • In [551], the relation between the terminal condition $\pi^{\ast}\left(T\right)$ and the optimal demand $\pi_{\infty}$ in an infinite horizon setting is crucial for the question of whether the stock demand is increasing or decreasing over the life-cycle. Formally, the reason is that the form of the ODE (3.20) induces a monotonic behavior of the demand since the slope is either decreasing or increasing but cannot change its sign.
    • In [867], the slope $b_{S_j}$ discriminates as if the trend of $S_{j}$ is negative or positive. The sign of the slope is used to ascertain that $x\left(t\right)$ has a positive (negative) trend in $S_{j}$. Thus, the average fluctuation function assesses asymmetric cross-correlation scaling properties when $x\left(t\right)$ exhibits piecewise trends. The trend-wise directional $q$-order average fluctuation functions are calculated in equations 5 and 6.
    • Throughout [222], qualitative analyses are held where the monotonicity of one parameter with respect to another is analyzed based on the sign of the partial derivative. For example, following equation 1.43, analyzing the sign of each term, there's an ambiguous impact of variations on capital stock composition on the proportionate rate of change of the same variable. The sign of this term depends on the sign of $\frac{\partial u^{*}}{\partial k}$.
    • In proposition 1 in [185], the monotonic relation between credit spread and asset volatility is analyzed in terms of the partial derivative sign. Holding asset volatility constant, the partial derivative of investment with respect to credit spread is negative, and holding credit spread constant, the partial derivative of investment with respect to volatility is positive. We thus provide the elasticities of investment when observing asset volatility and credit spread. Given Assumptions 1-5, the sign of these partial derivatives matches the empirical results. The first term on the right-hand side of equation (2) is negative due to the concavity of $k\left(\iota\right)$ in the denominator. All other terms are positive, and thus the sign of the elasticity of investment to credit spreads is always negative.

Goods

    • Throughout [957], and especially in the discussion where the authors' analysis of the single batch fixed time problem, lemmas and corollaries prove monotonicity properties regarding the amount of the good the seller decides to supply with respect to other parameters, based on the signs of its partial derivatives.
    • The vast majority of the propositions in [633] have to do with the monotonicity of $w^{*}$, $q\left(w^{*}\right)$ or $\pi$. They are proved by inspecting the signs of the partial derivatives of these variables.
    • Throughout [595], qualitative monotonicity based analyses are conducted and trend related theroems are being proved. For example, lemma 1 states that the marginal effect of a change in the probability of choosing size category y due to a change in the expected utility from size category $x$ is positive, i.e. $\frac{\partial Pr(y)}{\partial\omega\left(x\right)}>0$, when the ratio of partials, $\frac{\frac{\partial Q_{2}}{\partial\omega\left(x\right)}}{\frac{\partial Q_{1}}{\partial\omega\left(x\right)}}$, is sufficiently large, otherwise $\frac{\partial Pr(y)}{\partial\omega\left(x\right)}<0$. Furthermore, $\frac{\partial Pr(y)}{\partial\omega\left(x\right)}>0$ is only possible when $\delta>0$, i.e. when consumers are forward-looking in their decision-making.

Services

    • [33] calculates the partial derivatives of the expected duration of lay-up with respect to underlying parameters. The signs of these derivatives indicate that everything else being constant, the expected time of the lay-up period decreases as long-run freight level and speed of mean increase. Still, the expected duration of the lay-up period also increases as freight market volatility increases. More precisely, the negative sign of the partial derivative of the expected time to recovery with respect to the long-run mean of freight rates implies that the lower the long-run mean of the freight rate, the faster freight rates recover, and the expected duration of lay-up will be shorter. Similarly, the negative sign of the partial derivative of the expected time to recovery with respect to the mean reversion rate of freight rates implies that the faster the speed of mean reversion, the faster freight rates recover, and the expected lay-up duration will be shorter. Finally, the positive sign for the partial derivative of the expected time to recovery with respect to the freight rate volatility implies that the higher the freight rate volatility, the longer the adjustment to the long-run mean of freight rates and hence the expected duration of lay-up.
    • Theorem 7 in [470] suggests a formula for calculating the sign of the partial derivative of $\gamma$ with respect to $\beta$.
    • In [232], propositions 1, 3, and 4 and lemma 2 are proved based on a sign analysis of partial derivatives, for example, the derivative of $SCFI$ relative to $e$.

Preference and Demand

    • The necessary and sufficient conditionfor prices (gross equity premium) to increase (decrease) with supply is determined by the sign of the slope of the asset Engel curve in [553]. This observation allows the authors to derive:
      • Sufficient conditions directly in terms of the representative agent's risk aversion properties for general utility functions.
      • Necessary and sufficient conditions for the widely used HARA (hyperbolic absolute risk aversion) class.
    • In section 2.2 there, [528] discusses incorporating vehicle choice in the monocentric model with an extensive comparative analysis primarily based on the partial derivative signs of $p$ with respect to different parameters such as $y$ and $\alpha$. In turn, the derivative signs of $q$, $x$, and $u$ are analyzed throughout the appendix sections.
    • Proposition 1 and 2 in [340] suggest sufficient conditions for the monotonicity of the flow of the pollution with respect to the capital in the additive and general case, respectively.

Pricing

    • A comparative analysis of the buyers’ distribution among contract types is conducted in [698] based on partial derivatives signs analysis, in equations 40-45. The proportion of both buyer groups decreases with a more considerable maximum potential loss. The number of buyers opting for low-price contracts falls with a higher probability of failure for low-quality goods. Still, the percentage rises with increasing failure probabilities for high-quality goods since then ceter is paribus buying the high-price contract becomes less attractive. As expected, the opposite holds for the high-price group. Alleviating the assumption of socially optimal high-quality production (i.e. $\beta>c_{H}$) renders the last derivative sign positive for some special cases (e.g., $\beta < c_{H}\leq\beta+2\pi HF$). In these cases, high-quality production would not be socially optimal but still profitable for the seller. Higher failure probabilities would lead to higher demand for contracts with penalty clauses.
    • Comparing both pass-through rates depends on three factors: demand curvature, its derivative, and firms' bargaining power. In the canonical case where $\theta=1$, however, only the demand curvature's derivative sign matters, as indicated by corollary 1 in [371].
    • The very specific shape of $P_{3}^{*}\left(\cdot\right)$ stated in lemma 5 in [819] makes the analysis easier, especially if the sign of the slope at the point where this function and $P_{2}^{*}\left(\cdot\right)$ intersect is known. For example, if the slope at the joint is negative, then the mode of $P_{3}^{*}\left(\cdot\right)$ has already occurred when this function becomes part of $P^{*}\left(\cdot\right)$, and therefore the maximum of $P^{*}\left(\cdot\right)$ will take place at the interval where $P^{*}\left(z\right)=P_{2}^{*}\left(\cdot\right)$. Conversely, if the slope at the joint ispositive, the maximum of $P_{3}^{*}\left(\cdot\right)$ will occur in the section of $P^{*}\left(\cdot\right)$ where $P^{*}\left(\cdot\right)=P_{3}^{*}\left(\cdot\right)$. This idea is illustratedin Figure 7 there.
    • [287] shows that when a positive prepayment shock is value-increasing for the overall MBS portfolio, securities that load positively on prepayment risk earn the highest returns in the cross-section. On the other hand, when a positive prepayment shock is value-decreasing for the overall MBS portfolio, securities that load negatively on prepayment risk earn the highest returns. In other words, the sign of the change in wealth of a specialized MBS investor with respect to a positive prepayment shock changes over time. It thereby changes whether MBS investors require additional compensation to bear the risk that prepayment is too high or, conversely, too low. The authors provide additional support for segmented markets for MBS by demonstrating that the price of aggregate stock market risk is negative for MBS, meaning that securities that load more positively on systematic equity market risk earn lower returns on average.

Chemical Physics

    • In [627], a careful analysis of the anisotropy spectrum as a function of the emission wavelength for excitation at 480nm shows that the $r$-value depends on the emission wavelength. Each curve can be divided into three central regions characterized by a change in their derivative sign: the blue edge, the mean range, and the red edge. In the blue edge (for fluorescein roughly from 500 to 507nm), the r-value decreases rapidly as the wavelength increases. In the middle range (between 507 and 535nm), the r-value remains approximately constant. Finally, for emission wavelengths superior to 535nm (red-edge), the anisotropy value re-increases slowly.
    • The derivative sign of the resistivity of alloys is shown to correlate with the resistivity in [365].
    • The model predictions for benzene + cyclohexane in [316] were the best due to the less complex structure of this binary hydrocarbon mixture. It shows that the proposed model, which assumes that the sign of thermodiffusion coefficient is determined by the sign of the derivative of the mixture viscosity with respect to concentration, has the potential for further refinement and development for more complex mixtures.
    • In [84], the associated time-dependent phase induces a blue or red frequency shift, depending on the derivative sign.
    • The slope sign at the tipping point in [126] determines whether the ‘vertical’ order of the stable and unstable branches of the diagram of $\Delta T$ with respect to that of $\left[T\right]$ flips in the vicinity of the tipping point. When it does flip, $\delta W\left(\mu\right)\left(\delta U\left(\mu\right)\right) $becomes a convex (concave) function, while $fW\left(\mu\right)\left(fU\left(\mu\right)\right)$ remains concave (convex). The bifurcation diagram prompts that $\frac{d\Delta T}{d[T]}$ is negative. However, it should be relatively small because of the sharp tipping point.
    • [223] briefly explores an alternative strategy for bringing quantum beats to light in transient-transmission data. Even small-amplitude beats are expected to produce sign changes in the derivatives of a spectrum with respect to inter-pulse delay. For instance, the second derivative should be negative in the vicinity of a peak or downward-curving shoulder in the signal and positive near a trough or upward-curving shoulder. Figure 14 there shows a plot of the sign of the second derivative of the calculated SE signal at each probed frequency with respect to $t_{d}$ — without background subtraction. Figure 15 shows similar plots of the second derivative sign for experimental transient-absorption signals from PC577 and methylene blue.
    • In [776], the relative orientation of the slopes, i.e., the slope sign difference, is determined by the sign of the Jacobian of the $\left(a,b\right)\rightarrow\left(\mu,T\right)$ mapping. It is positive in the case of the mapping without reflection and negative otherwise. In that sense, it is topological. The authors show how to determine the sign on Fig. 2 thereby comparing the phase diagram in the vicinity of the tricritical point in $\left(a,b\right)$ coordinates with the standard scenario of the QCD phase diagram in $\left(\mu,T\right)$ coordinates. The two graphs are topologically the same: the first-order transition is to the right of the tricritical point, and the broken (order) phase is below the tricritical point. This means that the Jacobian of the $\left(a,b\right)$ to $\left(\mu,T\right)$ is positive (no reflection is involved). It means that, since $h=0$ slope is negative, the $r=0$ slope must be less steep, or if $\alpha_{1}$ itself is small, $\alpha_{2}$ could be slightly negative. In the random matrix model, both slopes are negative and small (i.e., $\alpha_{1}>\alpha_{2}>0$ in the model).
    • The inversion curve in [2] acts as a boundary between the cooling and heating regions, and cooling (heating) does not occur on the inversion curve. Therefore, we can distinguish between the cooling and heating region by checking the sign of the slope of the isenthalpic curves. The positive sign of slope stands for the cooling region and the minus for the heating region. The authors conclude that the temperature and pressure are different for different values of $\omega$ and $M$. The inversion point moves from the positive pressure to the direction of negative pressure when the $\omega$ changes from $-1$ to $\frac{1}{3}$. The temperature rises when the pressure decreases in the heating region. By contrast, the temperature is reduced as the decreasing of pressure in the cooling region. Moreover, the cooling-heating region shrinks as $M$ grows.

Optics

    • The light rays' rotation around the focuses in [22] implies the presence of a slope near the focuses. The slope does not change its sign (the rotation has the same direction); i.e., the derivative with respect to the azimuthal angle does not change the sign in tracing around the focus. When we return to the start point, the peak's height differs from the initial value because of the constancy of the derivative sign.
    • The interferometric waveform in [383] can be inverted for either its increasing or decreasing branch. It requires that the derivative sign of the actual displacement is known.
    • The finite recovery time of the bleached absorber in [589] is presented as one of the possible mechanisms accounting for the increase–maximum–decrease in pulse energy with the pumping rate in $c_{w}$-pumped $Q$-switched solid-state lasers passively by analytically evaluating the sign of the derivative of the energy with respect to the pumping rate.
    • [837] calculates, for each measured scattering region (for normal incidence, and in $1{^\circ}$ steps), the difference between the number of measurements with positive and negative local derivative. A new parameter, $\Upsilon R-G$, is defined accordingly.
    • Figure 4b in [817] shows the motion phase near the second-order flexural mode resonance. Dispersive coupling produces the opposite phase at different signs of detuning, indicating a change in the sign of the reflectance derivative $sign(\partial_{x}R)$ with detuning. Reactively coupled devices produce the same phase ($sign\left(\partial_{x}R\right)$) regardless of detuning.
    • In [843], only the equality to zero of the “conjugated” function and its derivative sign initial value are important.

String Theory

    • There are two possible shapes of $bGC\left(x\right)$ in [1043]. They are similar to the cases in the GG ensemble. The only difference is that the left endpoint of the $bGC\left(x\right)$ is at $x=q$ here. The difference between the two patterns is the sign of the slope of the curves at $x_{max}$. So one can conclude that there must be a transition line on the $\Phi-q$ plane on which the $bGC\left(x\right)$ curve has $\frac{dbGC\left(x\right)}{dx}=0$ at $x_{max}$.
    • From equation 4.5 in [407], it is possible to relate to the sign of the slope to the jumps of the derivatives of $\chi_{a}$ and $s$. For $x=0$ and $0<\frac{a}{\Lambda}<1$, the jump $\Delta\chi_{a}$ is positive which agrees with $T_{c}$ decreasing with $\frac{a}{\Lambda}$ in this region. At large values of $\frac{a}{\Lambda}$, where $T_{c}$ increases with $a$, $\Delta\chi_{a}$ also has the opposite sign.
    • In [57], only one of the solutions, (3.1) and (3.4), survive an arbitrarily small slope of the dilaton. The sign of the slope determines which one survives. It suggests that if setting $Q=0$, while not specifying which of the limits we are taking, $Q\rightarrow0^{+}$ or $Q\rightarrow0^{-}$, there are no folded string solutions at all. A simple way to see this is the following. Suppose that setting $Q=0$, the Virasoro constraints are (3.2). Taking the derivative of (3.2), we get that the derivatives' product is zeroed. However, if we glue, say, $\partial_{+}X_{0}=1$ with $\partial_{+}X_{0}=-1$ at a certain point, then at that point the second derivative blows up, which is not consistent with (3.5) and the fact that at that point we have either $\partial_{+}X_{0}=1$ or $\partial_{+}X_{0}=-1$.

Astronomy

    • The inner and outer line of sight trajectories in [322] are defined based on the sign of the slopes of the first and second derivatives of $\psi$ with respect to $\varphi$.
    • The solution in [249] is either a monotonic expansion or a monotonic collapse, as a function of the derivative sign.
    • The sign of $\beta$ in [721] depends on the sign of the derivative of $N$ near the horizon. For example, it is positive for the Schwarzschild black hole horizon while negative for the de Sitter horizon.
    • In [309], the throat collapses to zero radii, remains static, or expands forever, depending only on the sign of its initial velocity.
    • The possibility to have three changes of the sign of $\frac{\partial V\left(\phi\right)}{\partial r}$ in constant specific angular momentum tori in [912], is limited from bellow for black holes, and from above for naked singularities.
    • Should a rotating motion have been considered, [1000] would have had an interesting result that the transverse velocity changes its sign during the decaying phase of macro-spicules.
    • The sign of the third term in Eq. (7) in [961] dictates the propagatory nature of the solution. Where $V_{ph}\left(r\right)>V_{A}\left(r\right)$, this term is positive and the solution is oscillatory. On the other hand, where $V_{ph}\left(r\right)< V_{A}\left(r\right)$, this term is negative and the solution is evanescent. It is equivalent to considering the slope of the Alfvén frequency profile, $\omega_{A}=V_{A}\frac{m}{r}$. For an Alfvén speed profile of the form (4), there are three possiblescenarios:
      • $\alpha<-4,\frac{d\omega_{A}}{dr}>0$: the solution is always oscillatory for small $r$ and evanescent for large $r$.
      • $\alpha=-4,\frac{d\omega_{A}}{dr}=0$: the solution is either oscillatory or evanescent, depending whether the phase speed is above or below the Alfvén speed profile.
      • $\alpha>-4,\frac{d\omega_{A}}{dr}<0$: the solution is always evanescent for small and oscillatory for larger.
    • The temporal evolution of the wormhole throat in [93] is determined by the sign of its initial velocity. If it is positive, the wormhole throat expands monotonically; when it is negative, the wormhole throat collapses to the core radius in finite time; and, if it is null, the wormhole throat remains at rest.
    • The derivative of the bulk field in [862] maintains its sign during the cosmological evolution if and only if the coupling function always lies on one side of the phantom divide.
    • The contrast sign reversal of granulation in [546] occurs at heights around 200-300km. At the same heights, on average, the velocity sign reversal also occurs.
    • In [870], the gradients of matter velocity, magnetic field strength, and inclination, which are the main cause of usual classical asymmetry, remain important factors in forming unusual profiles. The number of profile lobes is proportional to the frequency of changes in the magnetic field strength gradient sign along the line of sight.
    • The descending elements in [545] can first change their contrast and then the direction of motion at a lower height.
    • The simplified analysis in section 4 in [940] is helpful because it provides a first idea of the sign of the slope of an unknown rotation profile just by plotting the splittings and the period spacings and allows to see if they vary in phase. In this case, it is not very clear if they vary in phase or not, and so instead, the authors make use of the linear trends of the splittings as indicated with the linear fits (dotted lines) in Figure 6 there. When period spacings and splittings vary in phase, the linear trend is downward (negative slope). Conversely, the linear trend is upward when period spacings and splittings are in anti-phase (positive slope). The observed splittings of KIC 10526294 have an increasing trend, as shown by the linear fit (dotted red line) in Figure 5. It is thus associated with a decreasing rotation rate.
    • The extension to a positive slope has been worked out by Furlanetto & Piran. Note that for the halo barrier, ellipsoidal collapse predicts a positive slope. However, section 4 in [9] shows that for the void threshold, it seems that a negative slope is in better agreement with the Lagrangian barrier.
    • The circular orbits in [950] are analyzed using the so-called force formalism by separating the circular orbits into four qualitatively different classes according to the sign of the canonical angular momentum of the motion and the orientation of the Lorentz force.
    • In [651], a change in the derivative sign provides the timing of EO1 and EO2.
    • In addition to its amplitude, a crucial feature of the result (4.23)-(4.24) in [368] is that the sign of the entropic mass squared $m^{2}$ can be positive or negative — with significant observational consequences — depending on whether the slope of the potential is positive or negative respectively. It is unusual in inflationary models to find a physical quantity that depends on the sign of the slope of the potential. In standard single-field inflationary models, one can arbitrarily change the definition of $\varphi$ into $-\varphi$, and hence the sign of $V$, without physical consequences.
    • The non-Keplerian velocity along the planetary wakes in [171] undergoes an abrupt sign reversal across the protoplanet. Also, the morphology of the flip in HD 100546 is similar to that predicted for disk–planet interactions. Especially in its azimuthal extension and in the sign of the velocity deviations.
    • In [910], the value $t_{0}$ is related to a value $t_{crit}$ at which the RG improved effective EF potential has an inflection point. There are three qualitatively different scenarios, depending (also) on the sign of the slope at that point: Universal, Critical, and Hilltop.
    • [48] demonstrates that changes of stability for any individual perturbative mode will occur, at a given point in the series, if and only if two specific conditions are met:
      • The slope of the $\partial_{x}f$ vs. $x$ curve is infinite (i.e. the tangent is avertical line).
      • The sign of said slope shifts at that point.

Gravity

    • From Theorem III.1 in [614], the cases where gMcVittie contains only a white hole are restricted to cases where $\dot{\xi}\rightarrow0^{+}$, that is, when the derivative goes to zero from positive values. Symmetrically, the only black hole case corresponds to $\dot{\xi}\rightarrow0^{-}$. It is because the sign of $\dot{\xi}$ is the sign of the slope of $r^{-}\left(t\right)$ for large $t$ since the denominator is positive at the $r$−horizon. The authors assume that the denominator is not degenerate. That is, $r^{+}$ and $r^{-}$ do not coincide. When its slope is negative, it is easier for null rays to reach the horizon from above the apparent horizon, which corresponds to the regular region, which leads to a black hole. In the same manner, when the slope of $r^{-}$ is positive, it is easier for null rays to traverse from below the apparent horizon, laying in the anti-trapped region, characterizing the limit of a white hole region. In both cases, if the absolute value of function $\xi\left(t\right)$ decreases fast enough, we have the case in which the limit surface corresponds to a pair of white-hole/black-hole horizons, separated by a bifurcating two-sphere. The cases in which the limit surface has only one character are those in which the $\xi$ function does not decrease faster than the exponential that modulates it in Eq. (41). Upon building models, one first needs to choose if the slope of $r^{-}$ will be positive or negative for large times, which by Eq. (42) means choosing the sign of $\dot{\xi}$ for large times. Inspecting Eq. (24), one observes that the term proportional to $M$ is positive by our initial assumptions. The sign of $\dot{H}$ can be either plus or minus, but physically realistic models usually correspond to $\dot{H}<0$. It means that we can tune the functions $m\left(t\right)$ and $H\left(t\right)$ so that the leading term for large $t$ is positive or negative.
    • [178] notes that when expanding a thermal system with a temperature $T$, the pressure always decreases, yielding a negative sign to $\partial P$. In this context, we can consider two different regimes with respect to the so-called inversion temperature, defined as the temperature $T_{i}$ at which the Joule-Thomson coefficient vanishes $\mu_{JT}(T_{i})=0$: If $T< T_{i}$ ($T>T_{i}$), then the Joule-Thomson processus cools (warms) the system with $\partial T<0$ and $\mu_{JT}>0$ ($\partial T>0$ and $\mu_{JT}<0$) respectively. When the system temperature tends to $T_{i}$, its pressure is referred to as the inversion pressure $P_{i}$, so defining a special point called the inversion point ($T_{i},P_{i}$) at which the cooling-heating transition occurs.
    • The expression of $CV$ in [684] is very long and difficult to consider. It is not worth showing. However, some of its behavior is consequently known from the sign of the slope of the temperature. The divergent points of the heat capacity are directly obtained from the points at which slopes of the temperature vanish. Hence, there is no divergence in $CV$ for $\eta>\eta_{0}$ while two divergent points appear when $\eta<\eta_{0}$. It is easy to check that $M$ is a monotonically increasing function in $u$ for fixed $V$. The sign of $CV$ is thus the same as that of the slope $\frac{\partial T}{\partial u}$. One can conclude that there is no locally stable range of $u$ for $\eta\geq\eta_{0}$, but there exists the locally stable range of $u$ for $\eta<\eta_{0}$ as shown in Fig. 13 there.

Acoustics

    • [578] investigated the effect of the sensor substrate size on the sensitivity through analyzing the correspondence between the regression function monotonicity and its partial derivative sign.
    • Two types of thermal loads are investigated in [417], namely $q=Bv$ and $q=Qsgn\left(v\right)$. This type of surface heating represents an abrupt change of heat flux in space as the beam moves through the upper half-plane towards the lower half-plane. The Euler-Bernoulli theory assumes that the flexural displacement $v$ is homogeneous across the cross-section, while the stress and the temperature in the presence of thermoelastic coupling are not. It follows that, when considering these two types of heating, once the geometric center of the cross-section is positively (negatively) displaced, i.e., $v>0$ ($v<0$), the whole cross-section experiences surface heating (cooling), as shown in Fig. 1(d) and (e) there.

Geophysics

    • The number of derivative sign changes is one of the extracted features in [758].
    • The required input values in [765] are the profiles of $\Theta$ and the wind. The stability conditions, essential for choosing the correct threshold value, are derived from the sign of the slope of the linear fit of $\Theta$ in the first 30m.
    • The relationship between the time and parallel position $x$ on an orbit in [458] explicitly relies on the velocity sign.
    • In [476], equations that differ slightly from (32) apply for cases with adverse surface slopes (i.e., slopes with $\beta<0$). If $\beta<0$ and $tan\beta>\left(1-\frac{1}{\kappa}\right)tan\theta$ each apply, then basal shear stresses on a smoothly sloping bed and staircase treads have opposite signs, such that $\tau>0$ and $\tau<0$ each apply. In this case a derivation that parallels the derivation of (32) yields the result $tan\varphi_{tread}=-\left[\kappa\tan\theta+\tan\left(\varphi-\theta\right)\right]$. This result and (32) can be consolidated into equation 33, where $sgn\left(\beta\right)$ denotes the sign of $\beta$ (Table 4). This equation implies that $\tan\varphi_{tread}\geq0$ is always satisfied, because the sign of $\beta$ is the same as that of $\kappa\tan\theta+\tan(\varphi-\theta)$ for scenarios that satisfy a limiting equilibrium force balance.
    • As mentioned in [967], the sign of the bias associated with FM will depend on the sign of the slope coefficient $\beta$. For positive (negative) trends, $E\left[FM\right]$ will generally be smaller (larger) than its true value, with that bias increasing as both $f$ and $n$ increase.

Climate

    • The effect of initial THC strength on the sea ice effect can be seen in Fig. 9b in [582]: the temperature effect is also reduced for potent initial THC. In this case, however, it has the inverse influence on the THC weakening because the sea ice effect tends to strengthen the THC (Fig. 6). Thus the modulation of the THC weakening through the sea ice effect has the correct qualitative behavior to explain the slope sign in Fig. 2. Further, the authors suggest separating permanently ice-free areas ($20^{\circ}-60{}^{\circ}N$; curve with stars) from regions affected by changes in sea ice cover ($60^{\circ}-80{}^{\circ}N$; curve with solid circles). It allows identifying the effects dominating the sign and the slope of the curve with diamonds in Fig. 11. The change in heat loss is negative for the more southern region, which determines the sign for the entire North Atlantic and is consistent with the decrease in $T_{o}-T_{a}$ (Fig. 5). Finally, the authors hold an extended qualitative discussion of the sign of the slope in section 5.
    • As the depth of the water table in [639] increased, the relationship between $CH_{4}$ emission and soil temperature switched from negative to positive, with the sign of the slope of the relationship changing near the point where the water table is just above the soil surface.
    • In [814] the sign of the slope $\beta$ is positive, consistent with the hypothesis that a northward displacement of the Gulf Stream will increase oceanic salinity offshore on the Mid-Atlantic Bight and drive more saline water into the estuary. The terms are also positive at all of the remaining USGS locations except Chester.
    • As stated in [899], during AMJ, the Northern Hemisphere is rapidly warming up ($\frac{dT}{dt}>0$), and the Southern Hemisphere is cooling down ($\frac{dT}{dt}<0$). In contrast, JAS is the warmest and coldest season in the Northern Hemisphere and Southern Hemisphere, respectively, with a weak temperature tendency.
    • In subsection 2.2 in [863], the climate's trend is analyzed using a linear equation to get its slope. The slope sign indicates whether the trend is increasing (positive) or decreasing (negative). Furthermore, the Mann-Kendall Test was used to judge whether the trend was significant or not, subject to a confidence limit.

Nuclear Physics

    • The low-energy behavior of the S-factor in [674] is defined by the sign of the derivative of $F\left(E\right)$.
    • The Extremum Seeking Control Algorithm in [16] measures the sign of $\frac{dy}{dt}$, whereas the resulting dynamics are governed by $\frac{dy}{dx}$ (formula 29 there).
    • For MPG-6 graphite with the close filler and binder crystallite sizes, irradiation under the same conditions does not change derivative sign on the dose dependences of elastic modulus. Its absolute value grows monotonically. This behavior of the "single-phase" MPG-6 graphite under irradiation is observed in [406] at much more significant volume changes (approximately four times) compared to GR-280 graphite. It contradicts the model according to which after the exhaustion of the accommodative ability of graphite to compensate for dimensional radiation changes, a decrease in density and strength characteristics should be observed (accommodation mechanism). A derivative sign change on the dose dependence of elastic modulus for GR-280 graphite at irradiation temperature is observed upon reaching a neutron fluence.
    • In [229], for counter-propagating beams, the same effect is present, but the slope sign is reversed. Since both co-propagating and counter-propagating beams are present in the vapour cell, the dual-frequency optical pumping effects produce diagonal line features with positive and negative slopes, creating the observed grid patterns.

Electromagnetism

    • The results in [496] show that the EMI system can be used as a “velocity-sign” sensor because the sign change of the emf signal agrees well with that of the velocity signal.
    • Based on the derivative sign, the resistance in [646] can induce either receiving energy from the outside or omitting it to external chains.
    • The binary barcodes in [981] were generated based on the second derivative spectra. A binary value ($0$ or $1$) was assigned to each calculated second derivative spectral data point primarily based on the sign of the second derivative, i.e., $1$ for positive second derivatives (upward curvature), and $0$ for negative second derivatives (downward curvature).
    • The electrons in [563] wiggle in the $r_{f}$ field of the first spatial harmonic with the phase velocity directed in the opposite direction in respect to the bunch velocity so that particles can irradiate high-frequency Compton’s photons.
    • The sign of the slope can be used to assign the neutral state of the molecule in the stability plots even if no ZFS is detected in the Coulomb blockade regime or the SET, as illustrated in [147]. Eight samples show a positive slope ($\Delta S=-1/2$), and four offer a negative slope ($\Delta S=1/2$).
    • In [542], the second derivative sign changes following the first foil becoming partially or fully transparent.

Magnetism

    • [946] applies the Banerjee criterion in the following sense. In the ferromagnetic state, the positive value, throughout the all concerned interval, of the slope of the tangent to the Arrott isotherms means the magnetic phase transition of the second order, while the change of the tangent slope sign from positive to negative means the phase transition of the first order. A positive value of the slope of the tangent corresponds to the increase of the Arrott isotherm or, equivalently, a positive value of the derivative $\frac{d\left(M_{2}\right)}{d\left(H/M\right)}$ (Fig. 4b).
    • The transition to the paramagnetic state in [549] is accompanied by a change in the primary scattering mechanism of conduction electrons. It explains the experimentally observed change in slope sign of the dependence $S\left(T\right)$ at temperatures $T>T_{C}$ in the studied half-metallic ferromagnets. At low temperatures $T< T_{C}$, the decisive factors are the mechanisms of elastic scattering of conduction electrons and the specific features of the band structure. In the paramagnetic state, the temperature dependence of the thermoelectric power is determined by the mechanism of the inelastic scattering of charge carriers. It leads to a change in the slope of the curve $S\left(T\right)$ near the Curie point.
    • According to Banerjee’s criteria, the slope sign of the $\frac{H}{M}$ versus $M^{2}$ curve in [438] gives information related to the nature of the FM-PM transition. If all the $\frac{H}{M}$ versus $M^{2}$ curves have a positive slope, the magnetic transition is of second-order; if some of the $\frac{H}{M}$ versus $M^{2}$ curves show a negative slope at some point, the transition is of the first order. Clearly, at some temperatures, the $\frac{H}{M}$ versus $M^{2}$ curves of $La_{0.6}Ca_{0.4}MnO_{3}$, show negative slopes at low-magnetic fields (H<10kOe) but positive slopes at high-magnetic fields (H>10kOe). Particularly around the TC, the slopes are positive over the entire field range. It indicates the existence of the tricritical point sets a boundary between FOMT and SOMT in the undoped sample.
    • The mode number in [650] is given by the slope of the best fitting line, calculated from a least square regression. In this context, the slope sign determines the direction of the propagation in the laboratory frame. A positive (negative) slope is connected to a propagation in the ion(electron) - diamagnetic or co(counter)-current direction. In the presented case of two core modes, a positive slope reproduces the data better than a negative one.
    • Although the negative sign of the slope in an Arrott plot in [148] can be considered a clear signature of an underlying first-order transition, Banerjee made an important observation: the theory predicts the value of the (negative) slope to increase with increasing temperature. In fact, it follows from Eq. (35) that the slope of the Arrott, when $m^{2}\rightarrow0$, changes sign at $\tau=\tau_{2}>\tau_{c}>\tau^{\ast}$. More importantly, most of the subsequent works using the Banerjee criterion to identify first-order transitions show that the (negative) slope of the Arrott plot, $S=\frac{\partial\left(H/M\right)}{\partial\left(M_{2}\right)}$, decreases when increasing the temperature.
    • The nature of the magnetic phase transition in [457] is determined by using Banerjee's criterion, according to which the slope sign of $\frac{H}{M}$ vs. $M_{2}$ (Arrott plot) gives information about the order of FM-PM transition. In this work, the standard Arrott plots were derived from the M-H curves and shown in Fig. 6. Positive slopes can be seen in all $\frac{H}{M}$ vs. $M_{2}$ curves over the whole field interval, implying that the magnetic phase transition in all the investigated samples is of second order.
    • The compounds in [305] differ in the sign of the variation of the orbital magnetic moment with $\theta$, although they both have the same sign of $K_{1}+K_{2}$. In a plot of the energy as a function of $\theta$ vs. the anisotropy, this appears as a difference in the curves' slope sign.
    • [466] tries to settle the disagreement between theory and experiment on the sign of $\Delta v_{1}\left(y\right)$. It is possible that in the authors' formalism, there is a delicate interplay between the properties of the magnetic field in the medium, related to the rate of expansion in comparison to the decrease in the magnetic field with time, which the inclusion of temperature-dependent conductivity and viscosity might drastically alter. Another possible source of error might be the prescription to determine charge-dependent spectra, which assumes a chemical potential to modify the particle species abundances without considering any modification of the momentum distribution due to the electromagnetic field.
    • The contribution from the interstitial region in [938] is one order of magnitude smaller and has an opposite sign (negative), which is due to the reverse polarization of the 4s electrons. The difference between the two functionals is not uniformly positive or negative; some lobes (which differentiate orbitals) have opposite signs. It is visible for the Co atom in FeCo, for instance.

Condensed Matter Physics

    • The solution in equation 16 of [464] describes a current concentrated within a distance of order $\left|\ell x\right|$ of one edge of the sample. Which edge this is depends on the sign of $\ell_{x}$ (i.e. the sign of $\frac{\partial\rho_{xy}}{\partial x}$ since $\rho_{xx}$ is positive). For $\ell_{x}>0$, the current is concentrated close to $y=0$; for $\ell_{x}<0$, the current is concentrated close to $y=w$. Further, for $w\gg\ell_{x}$ the side along which the current flows is determined by the sign of $\ell_{x}$.
    • [326] discusses the Vakhitov-Kolokolov (VK) or anti-VK criteria, which relates the slope sign to the necessary stability condition for solitons supported by the self-attractive or repulsive nonlinearities. It is valid in the system presented when both the nonlocal and local nonlinearities are self-repulsive. Indeed, the families satisfy the anti-VK criterion, $\frac{d\mu}{dN}>0$, and are certainly completely stable. On the other hand, when the solitons are supported by the combination of the nonlocal repulsion and contact attraction, the VK/anti-VK criterion does not hold. The reason is that it is not possible to identify the dominant nonlinear term: the change of the sign from $\frac{d\mu}{dN}>0$ to $\frac{d\mu}{dN}<0$ does not lead to destabilization of the solitons (non-compliance with the VK criterion occurs in other models too).
    • For smooth functions, the order of accuracy for FDD ($O\left(\Delta t\right)$) in [669] is less than the centered divided differences, but there is no guarantee that our function is smooth. Then the authors suggest recalculating with the forward divided differences and removing the outliers (Fig. A.24 there). The behavior is an increased slope with the FDD. After applying the outlier removal scheme, the forward divided differences with outlier removal (FFDOR) still have an overall % increase from the initial results reported (Table A.4 there), but the slope sign is still unaffected. If we analyze every other frame due to concerns of oversampling, both derivative approximation schemes continue to have positive slopes.

Classical Mechanics

    • The direction of the peaks in the contact mode in [119] depends on the slope sign. However, in the case of the TR mode, it is always downward, and the surface slope's pattern does not correlate with that of the TR amplitude. Further, there is a sign reversal in the surface slope in the Trace and Retrace scan, and the sign reversal in the friction force only occurs in the contact mode.
    • As illustrated in [315], there may be irregularities with a positive slope in a real pile of grains due to erosion. In this case, the velocity must depend on the slope sign, or else we will have avalanches climbing up the pile at the points with positive slope, with the same velocity as in the negative slope side. To correct this defect, we considered the equation for $v$ as stated in equation 15.
    • In the sensitivity analysis method in [894], the knowledge of the derivative sign of the function allows us to calculate the upper and lower bound of the solution by using the endpoints of the interval.
    • $Pos\left(\omega^{2}D\right)$ and $Pos\left(\omega^{2}G\right)$ are introduced as a function of distance from the edge in [42]. There is a gradual change of the slope sign over a distance of $1.5\mu m$ from both edges. It indicates that most of the compression is gradually relaxed, and the flake in that region is subjected to tension. At higher strain levels, the region from $2$ to $4.5\mu m$ appears to be free of residual strain and shows the highest rate of tensile stress takeup. The region on the right-hand side of the flake is already in compression. Therefore, it lags behind the rest of the flake.
    • The backaction force in [707] is dependent on strain and the displacement, $z$. In this red-detuned case, the sign of force gradient is negative. This negative $\nabla F_{p}$ and the corresponding time delay result in the efficient amplification effect around the mechanical resonance frequency while reducing the damping factor. In contrast, when the photon energy is blue detuned, the upward bending decreases the backaction force, whereas the downward bending increases. Therefore, $\nabla F_{p}$ is positive in this blue-detuned case, and it leads to the efficient damping effect. The above detuning dependence is the opposite of sideband amplification/damping. In this excitonic optomechanics, the feedback is caused by strain-induced modulation of the number of $e-h$ pairs. Thus, the slope sign in the absorption (PLE) spectrum and the sign of the piezoelectric coefficient determine the polarity.
    • Theorem 1 in [261] states that the conditional probability law of $\left(X\left(t\right),V\left(t\right)\right)$, $t\geq0$, depends on (also) the sign of the velocity. Theorem 2 further states that the bounded linear operator also depends on the velocity's sign, which reflects in the following expected value calculations, e.g., in Eq. 3.13.

Quantum Mechanics

    • Without loss ofgenerality, one can set $t^{\ast}=0$ and restrict the attention to factorized pure initial states in [99]. In other words, the two subsystems, initially prepared in a state $\rho(0)=\tilde{\rho}(0)$, will become entangled by the noisy dynamics induced by their independent interaction with the bath if $E(0)=0$ and $\partial_{t}E(0)<0$, for a suitable vector $|\psi>$.
    • If the condition on the derivative sign in [387] is not met, the energy is increased or decreased. The process iterates until the necessary conditions are fulfilled.
    • [10] focuses on the result that the sign of the slope of phase resetting curve $H'\left(\varphi\right)$ at zero is sufficient to give the stability of synchrony for identically coupled identical oscillators, which turns out to help develop an intuition for when synchrony can occur.
    • In [143], the change in the DTOP $\Delta\nu D\left(t_{c}\right)$ in the vicinity of a critical time $t_{c}$ can be directly related to the sign of the slope $s_{kc}$ at the critical momentum. This result affords an intuitive geometric interpretation: critical momenta are located on the equator of the relative Bloch sphere. $\Delta\nu D\left(t_{c}\right)$ is then directly related to whether $df\left(k\right)$ traverses the equator of the relative Bloch sphere from the northern to the southern hemisphere ($sgn\left(s_{kc}\right)=-1$) or from the southern to the northern hemisphere ($sgn\left(s_{kc}\right)=+1$) at the critical momentum.
    • The derivative sign of the band structure in [66] is explicitly used in several formulas.
    • The sign of the Seebeck coefficient in [373] is given by the slope sign of $T\left(\varepsilon\right)$ at the Fermi energy. It can be used to determine if the HOMO or the LUMO dominates transport.
    • [444] assumes $w\left(k\right)$ changes during $\Delta t$, i.e. $w\left(k\right)=w\left(k\right)\left(t\right)$ does not remain the same function, and the sign of the slope $w'=w'\left(t\right)$ changes during $\Delta t$. It implies center a changes within the $k$-domain and average momentum $k_{changes}$ accordingly during $\Delta t$. A change of $w'$ can only be assured by measurement. For instance, a change from a to the opposite $-a$, when reflection occurs of the original wave during $\Delta t$ and momenta $k$ and $k_{change}$ to their opposites. It depends on the sign of $w'$ whether $\left|\Delta k_{-}\right|.\left|\Delta q\right|\approx c_{-}$ is more or less than $1$. When a sign change occurs during $\Delta t$ and one assumes the $\Delta t$ time interval average $\left\langle c\text{\_}\right\rangle =1$, the description is within average similar to the time-independent situation with $w'$ equal to zero.
    • The transition time in [958] is proportional to the slope of the curve in Fig. 3(b). Thus the sign of the transition time is solely determined by the slope sign. Pointedly the slope of the curve is positive when $\varepsilon\geq0.5$ and in this region, the phase is leading with the energy, giving a positive value of $\tau$. The slope is negative when $\varepsilon\leq0.5$ and here the phase is lagging with the energy, giving a negative value of $\tau$.

Fluid dynamics

    • [343] goes beyond the adiabatic limit ($\omega=0$) and explains the peculiar reversal of the velocity sign found previously in the numerical analysis.
    • The parameter $\sigma=sgn\left(u\right)$ from the mass conservation equation (eq. 24) in [743] is the opposite of the sign of the slope of the free surface in the x-direction, measured with respect to the horizontal, not with respect to the plane.
    • Lemma 3.1 in [487] proves that $\varepsilon$ achieves a unique positive minumum at $s_{0}$ based on an analysis of the derivative sign properties.
    • In [747], the surge motion increases a little before the discussed period, and right after this period, there is a drop in the surge motion. It is due to the derivative sign shift of the phase in pitch motion in this particular period. It means that the body will not encounter the incident wave crest when the pitch motion is reaching its maximum amplitude but a little after, thus creating a little smaller pitch force and a smaller surge force as well.
    • Equation 5 in [300] applies the pressure gradient sign and that of the streamwise velocity to calculate the nondimensional velocity's gradient. In turn, the velocity itself also depends on these gradients' signs, as evidenced in eq. 7.
    • In [445], a point belongs to a vortex center based on conditions involving the velocity signs near it.
    • The examination of the POD modes in [988] shows that the longitudinal structure of the vertical velocity fluctuation is generated along the jet axis, having the opposite sign of velocity fluctuation on both sides of the jet axis.
    • The definition of oscillatiory and non-oscillatory sequences in [993] is based on sign changes and lack thereof. The authors also prove several facts about the relationship between the sign of $w$ (which determines the sign of the slope $\eta\prime$ of the free surface) and the pressure disturbance $R$.
    • A change of sign of the pressure derivatives in [28] was observed for all G-band components of the double-wall CNTs at $\sim1GPa$. It is not possible to establish if there is a corresponding change in the RBLM peaks. At $\sim2GPa$ the $G$-band peaks energy pressure slope starts to evolve to become positive again associated with the loss of the $R_{1},R_{2},R_{3},R_{4}$, and $R_{6}$ RBLM peaks. These two simultaneous observations can be assigned to the onset of the collapse in these CNTs. Furthermore, the four $G$-band components tend to evolve towards a monotonic behavior that is reached at about $\sim5GPa$, which a graphite-like response can then explain. Further, the authors assigned the change of the $G$-band's slope sign to the onset of the collapse and the graphitic behavior to the fully collapsed geometry. In contrast, the change of sign was previously assumed as marking the complete collapse of the tube.
    • In fig. 2 of [5], illustrates the scheme of the Taylor gas-liquid flow in the microchannel and the calculated pressure profile in the liquid phase. Axial pressure distribution has a positive slope in the film, whereas the pressure distribution slope is negative in the liquid slugs. The velocity field in the fixed coordinate system in the nose and tail areas of bubbles in the liquid film velocity has an exceptionally positive sign, the same as in the continuous medium: in liquid slugs moving between bubbles (Fig. 3b). Thus, there is a phenomenon consisting of a change of sign of the velocity. In the bulk liquid and areas near the nose and tail of the bubble, the velocity is positive, whereas in the area with constant film thickness, the liquid velocity is negative.
    • The formula for very early-time dynamics with concise time intervals (Eq. 32 in [434]) depends on the signs of $v$ and that of $v_{0}$.
    • A method for manipulation of microparticles in volatile liquid layers hundreds of microns thick is proposed in [24]. It relies on the control of Marangoni flows by changing a sign of the temperature gradient in the liquid by the local action of the heat source and/or the heat sink. The method's applicability to perform a wide range of manipulations with the particle ensembles is demonstrated partly by creating ring-like patterns by changing the temperature gradient sign during the particle assembling process.
    • The normalization and sign of the velocity at the center in [327] are determined only by the time dependence of the pressure at fixed $\xi$. The relation between the velocity sign and $\lambda_{p}$ is explained as follows. When $\beta>0$, the fluid expands, and the pressure decreases. Since the pressure profile is constant at $r\rightarrow0$, $\lambda p$ must be negative. When $\beta<0$, the fluid is compressed, and the pressure increases, which requires $\lambda p>0$. According to this result, negative velocities near the origin, corresponding to $\lambda p>0$, are achieved for $k\sim0.92$.
    • A preliminary leading-order analysis of a Couette flow DNS in [659] yields an increase of logarithmic slope (decrease of $\kappa$) at a $y+break\approx400$. The correlation between the sign of the slope change and the flow symmetry motivates the hypothesis that the breakpoint between the possibly universal short inner logarithmic region and the actual overlap log-law corresponds to the penetration depth of large-scale turbulent structures originating from the opposite wall. More specifically, according to hypothesis (2.1), the sign of this slope change depends on the flow symmetry, with a slope decrease in channel and pipe flows and an increase in Couette flow.

Field Theory

    • A dynamical study of the generalized scalar-tensor theory in the empty Bianchi type I model is made in [331]. The authors use a method to derive the sign of the first and second derivatives of the metric functions.
    • The sign of the derivative couplings for which there is no consistent Wilsonian UV-completion is the one that allows for consistent classicalons in [302]. The information about the chosen road is encoded in the couplings' derivative sign, such as the quartic coupling for a Goldstone-type particle.
    • The change in slope sign in [525] indicates that phase 1 experiences radial stretching, whereas phase 2 is radially compressed.

Solition

    • Theorem III.1 in [892] applies the Vakhitov-Kolokolov condition, stating that the optical power function decreases in $\mu$.
    • In [301], the change in the slope sign at $w_{m}=2.1624$ for the plot of the width coefficient $A_{2}$, when approaching a general nonlocal nonlinearity (GNN) regime. A second transition in the slope sign is then observed at $w_{m}=3.0846$ if the characteristic length keeps increasing. Thus, the NVA approach naturally suggests three regions defined in Fig.1(b) there. In region I, the slope is positive, and it stands for a suprarange localization, where the weak nonlocality (WNN) is defined as the limit where the width of the beam is well outside the range of the nonlocal response, particularly at $w_{m}\rightarrow0$ we recover a local Kerr theory. Region II stands for critical-range localization. It can be associated with a GNN regime where the range of the nonlocal response is close to that of the beam's width. In this case of an NLGR, it is characterized with a negative slope. Region III has a positive slope again, which stands for a subrange localization. The strong nonlocality (SNN) is defined as the limit where the width of the beam is well within the range of the nonlocal response.

Analytical Chemistry

    • [270] classifies polar tensor groups is as follows. Four distinct groups of polar tensor results are seen, one for each possible derivative sign alternative.
    • The points' brightness in [312] is based on the derivative signs.
    • The sign of the first and second derivatives of the common-mode input impedance in [908] is analyzed to classify its extrema points.
    • The basic idea of Derivatives Sign Differences (DSD) is to count the points where either the monotony or the concavity (first and second derivative signs, respectively) of the spectra differ. Therefore, the lower value returned the lesser spectral difference. The proposed measure in [409] does not compare absorbance values but the signs of first and second derivatives tuples. Thus, DSD correctly matches different spectra from the same substance because these spectra do not differ in monotony and concavity.
    • Alternating the polarity of the gradient pulses every other scan in [19] seems to improve results slightly.
    • The system presented in [831] cannot resolve flow direction because of the symmetry of Bessel beams about their axis. For LDV, the acousto-optic shifting of one of the beams, causing the fringes to move in one direction, is used to resolve the velocity sign.
    • For $f$, as in example 3.10 of [121], the icosahedron minimizes energy integral over symmetric measures on the sphere $S_{2}$. Note that the constant term can be ignored, so it suffices only to consider the sign of derivatives. In particular, if $b>0$ and $d$ becomes sufficiently small in magnitude, the example's inequalities will hold.
    • The frequency-domain method in [916] employs the non-linearity of signal to recover the speed sign in the frequency domain directly. The target speed is measured by the signal frequency, whereas the signal phase evaluates the speed sign. Another method to improve the resolution is to perform offline signal processing to invert the function and reconstruct the target displacement accurately. It requires knowing the derivative sign of the actual displacement.

Qualitative Trend Analysis

    • The fuzziness of trends in [257] is defined based on the primitives that are classified by the sign of the derivatives.
    • [256] introduces an interval-halving algorithm for trend extraction that leverages derivative signs of different orders.
    • In [635], episodes are defined as time segments in which the sign of one or more derivatives does not change.
    • The flowchart for online trend-extraction in [634] is based on primitives classified by derivative signs.
    • The branch-and-bound algorithm ([964]) searches for optimal argument values in which the sign of the fitted function and/or one or more of its derivatives change.
    • In [962, 932, 963, 931], episodes are defined as time segments in which the primitives do not change.

Chemical Thermodynamics

    • In [771], all along the locus $\Delta$ (the union of $\Delta_{max}$ and $\Delta_{min}$) the condition $\frac{\partial\rho}{\partial T}P=0$ is satisfied. Formal thermodynamic analysis shows that changes of sign of the slope of $\Delta$ in the $T-P$ plane are associated with intersections with certain response function extrema. The point $A$ in Fig. 2(a) there, where $\Delta$ has an infinite slope, is coincident with a point on a locus $\Lambda$ along which $\frac{\partial K_{T}}{\partial T}=0$, where $K_{T}$ is the isothermal compressibility.
    • The sign of the derivative $\frac{d\gamma}{dp}$ in [65] is determined by that of the concentration factor. In particular, if the composition of the surface layer is intermediate between the compositions of the coexistent phases, this factor is negative, and the surface tension decreases with increasing pressure.
    • Many of the GST materials in [968] display a prominent feature. Upon crystallization, their electrical resistivity starts high and can be decreased tremendously upon annealing. This effect is accompanied by a continuous change in the temperature coefficient of resistivity (TCR), which eventually changes its sign from negative to positive. The high resistivity and the negative TCR have been attributed to the disorder-induced localization of carriers in the vicinity of vacancy clusters due to the random occupation of the Ge/Sb/vacancy lattice sites. These localization effects dominate the electrical transport even at room temperature, as evidenced by high resistivity, a negative TCR, and a small mean-free path. Grain boundaries, on the contrary, do not provide the dominant contribution to scattering, as can also be seen from data on single crystalline GeTe nano-wires, which also reveal disorder-induced localization. Further, the last column of Table 1 indicates the metallic or insulating nature of the samples by listing the sign of the slope of $w\left(T\right)$ as defined in Equation (7) there at the lowest accessible temperature (LAT). Lastly, the proposed method does not reduce the requirements in terms of low-temperature data. If in the low-temperature limit this quantity is positive and its slope $\frac{dw\left(T\right)}{d\left(T\right)}$ is negative, the corresponding sample must be insulating.
    • A negative or positive sign of the slope of Arrott plots in [319] corresponds to a first-order or second-order magnetic phase transition, respectively. The results obtained for $S_{1}, S_{2} and S_{3}$ show clearly the positive slope in the entire range, indicating a second-order magnetic phase transition.
    • In figure 9 of [155], the structure of the typical skeleton of the primary benzene sulfonamide series AP-BSA (where substituent variation occurs on the Ph ring), with bonds labeled in red ($+$) or blue ($-$) depending on the sign of the slope when regressed against pKa. In figure 11 there, the signs of the slopes of bond length vs. pKa for $n$-butylsulfonylureas substituted at the phenyl group, where red denotes a positive slope, and blue denotes a negative slope.
    • The sign of the second derivative of $P$ with respect to $V$ in [341] is a parameter that plays an essential part throughout this work. For example, the second derivative of the TMD line is positive but negative in the $VT$ projection. The only mechanism by which this can happen for a TMD is if the second derivative of $P$ with respect to $V$ is negative. However, this means that such a point cannot intercept the liquid-vapor spin-odal as, at that point, the second derivative is positive. It means that the avoidance of a collision between the TMD and liquid-vapor spinodal lines is necessary if the TMD line passes through the infinite gradient and changes gradient sign in the case where the signs of second derivatives of the density anomaly lines are always opposite.
    • The sign of Seebeck coefficient in [980] can be positive or negative, depending on the sign of the slope of the transmission function at the Fermi energy EF. The sign of the Seebeck coefficient is related to the nature of charge carriers: The Seebeck coefficient is positive for hole-dominated transport and negative for electron-dominated transport. Therefore, measurements of the Seebeck coefficient of MJs are of great importance in determining the dominant transport mechanism and the location of frontier molecular orbitals in MJs. In addition to the above-described phenomena, bithermo-electricity effects in MJs. coexistence or sign switching of positive and negative Seebeck coefficients of the same MJ, have also been reported. More importantly, the positive sign of the Seebeck coefficient unambiguously indicates hole ($p$-type or HOMO) conduction in these MJs, which was not accessible with other electrical measurements. The Seebeck coefficient of molecules can also switch its sign when molecular length increases, indicating an alteration of dominant charge carriers.
    • As seen in the high-pressure phase diagram in [456], due to the existence of the inflection point, the graphite melt line's slope sign changes. As the entropy change upon melting should be positive, the change in sign is then due to a change in volume attending the phase transition. At low pressure, the melt line slope is positive, indicating a liquid that is less dense than graphite, while at high pressure, the liquid is denser than graphite, evidenced by the negative slope of the melt line. Several investigators have interpreted this change in the slope of the melting line as evidence that the liquid may undergo a first-order liquid-liquid phase transition (LLPT) from a low-density liquid to a higher-density liquid.
    • The curve scale model in [80] uses the sign of the rate of change of the temperature, $sgn\left(\frac{dT}{dt}\right)$, to distinguish between different (sub-)models for heating and cooling.
    • The mixing enthalpy and the permutation enthalpy in [114] provide the same information but differently. Whereas the sign of the mixing enthalpy indicates that the alloy tends to phase separation or form ordered structures, the sign of the slope of the permutation enthalpy gives the tendency of the alloys since the permutation enthalpy is the derivative of the mixing enthalpy. A positive (respectively negative) slope characterizes a tendency to form ordered structures (respectively to phase separation). The permutation enthalpy is also determined for each configuration. It corresponds to the change in energy when an A atom replaces a random B atom of a given configuration. Here, $\Delta H\left(c\right)$ has a nonmonotonic behavior. For $c<0.8$, when $\Delta H_{mix}$ is negative, the slope of $\Delta H_{perm}\left(c\right)$ is positive; it becomes negative for $c>0.8$. The slope of the triplet contribution is close to $0$; the slope of the chemical contribution is thus given by the slope of the pairs, and it is positive.

Quantum Chemistry

    • The classification of critical points in [267] is based on the second derivative sign.
    • In [687], the surprising oscillating behavior, a double change of sign of the $v_{1}$ slope, points to the appearance of a hitherto unknown first-order phase transition in excited QCD matter at high baryon densities in mid-central $Au + Au$ collisions.

Molecular Structure

    • In [869], the critical electron density for the metal-insulator transition in a two-dimensional electron gas can be determined by a sign change of the temperature derivative of the resistance.
    • According to Eq.(2) of [479], the behavior of the field-induced entropy increment is determined by the permittivity derivative temperature dependence. In particular, the sign of the increment $\Delta S$ depends straightly on the sign of the permittivity derivative. In the case of a less polar 7CHBT, the permittivity derivative attains zero as its final value at the I–N transition. For strongly polar 7CB, the $\frac{d\varepsilon}{dT}\left(T\right)$ dependence shows a critical-like behavior, and at about $10$ degrees before the phase transition, one observes a change of the permittivity derivative sign (Fig. 1b). The result seems to be necessary because the $\frac{d\varepsilon}{dT}\left(T\right)$ dependence reflects temperature behavior of the electric field-induced entropy increment directly. A negative value of the derivative $\frac{d\varepsilon_{s}}{dT}$, i.e., $\Delta S<0$, means that the entropy decreases due to an applying of the electric field to the dielectric material. That decrease is apparent: forced by the field, an orientation of the dipoles causes an increase of the molecular order. It is a normal behavior of dipolar liquids for which the static permittivity increases when the temperature decreases ($\frac{d\varepsilon}{dT}<0$). A change of the permittivity derivative sign to the positive, observed in the prenematic region of 7CB, means that the entropy increment is also positive, $\Delta S>0$. So, in that region, an electric field applied to the isotropic dipolar liquid increases a disorder on the molecu-60J.
    • The relations between interaction energies and substituent constants for pyridine complexes with p-substituted iodotetrafluorobenzenes and for the complexes of $p$-substituted pyridines with iodotetrafluorobenzene are illustrated in [919]. The slopes of both regression plots are similar in magnitude but obviously of opposite sign. Therefore, the influence of the substituents on the interaction strength is identical in either the halogen-bond donor or acceptor aromatic molecules. Furthermore, it was shown that the sign of the slope for correlations between the chemical shifts and the substituents constants depends on the position of the carbon atom in the ring, indicating their different sensitivities to the substituent effect.
    • The $CP\left(r\right)$ function defined in equation 7 of [266] returns the slope of the tot-ED. However, it is with an adjusted sign depending on the sign of the slope of the nonbonding-ED contribution. Since the sign of the directional derivative depends on the direction in which it is measured, the derivative sign factor is used to enforce the $CP\left(r\right)$ function to be negative throughout. The exceptions are regions where the sum of the bonding and antibonding gradients' sign is opposite to the nonbonding gradient.
    • [332] studies the sign of the derivative of the concentrations of the species in the network at a steady state with respect to a small perturbation on the parameter vector.

Crystallography

    • The strength of the interactions in [822] is classified based on the second derivative sign.
    • The graphs of lattice enthalpies vs. molar volumes of $LnPO_{4}$ (with CSE of formation of $LnVO_{4}$ from oxides) are presented in Figure 1 (monazite structure) and Figure 2 (xenotime structure) of [751]. Their slopes are negative. The negative sign of the slope accounts for the trend of changes of lattice enthalpies vs. molar volumes within the light and heavy lanthanide orthophosphates. Hence, lower approximate limits have resulted for the shear moduli of $LnPO_{4}\left(m\right)$, $G\approx61GPa$, and $G\approx49GPa$ for $LnPO_{4}\left(x\right)$.
    • In the Hall resistance plots of the SL samples in [583], the slope sign indicates the conductivity type: $n$-type or $p$-type character.
    • The current sign in [782] depends on the derivative sign of the triangle voltage pulse.

State of Matter

    • Exponential growing and damping in [904] appear only in cases where the derivative sign is constant.
    • For the central fields in [891], the magnetized hypernuclear matter shows instability, signaled by the negative sign of the derivative of the pressure parallel to the field with respect to the density, leading to vanishing parallel pressure at the critical value. It limits the range of admissible homogeneously distributed fields in magnetars to fields below the critical value.
    • [12] calculates the probability that at least one derivative has a different sign from the remaining ones. Further, the derivative of the polynomial function changes sign with the squared root of sNN, thereby indicating a non-monotonic variation of the measurement with the collision energy.
    • In [342], the sign of the derivative of the chemical potential with respect to the total number of dust particles, the positiveness of which is the third condition for the thermodynamic stability, is shown to coincide with the sign of the isothermal compressibility of the dust subsystem. Therefore, it is concluded that the dusty equilibrium plasma is thermodynamically unstable.
    • The order of the magnetic phase transition in [483] can be ascertained from the sign of the slope of Arrott curves. The positive slope observed for all studied temperatures implies that the magnetic phase transition between the FM and PM state is of the second order.
    • [233] applies a partial differential equation called SF for image sharpening and enhancement. The SF process can suppress the edge diffusion, achieve image deblurring and deconvolution. Still, it is susceptible to noise, and the noise is also amplified when the image is enlarged. The SF is commonly generalized by Eq. 7 there, which incorporates the second-order directional derivative signs.

Chemical Solutions

    • In [795], while for polymer blends (thus large size-large size systems, but with components of “similar” size) one finds that the golden rule is $\frac{dT}{dp}>0\left(v_{E}>0\right)$, commonly, in polymer solutions (large size-small size systems) $\frac{dT}{dp}<0\left(v_{E}<0\right)$, which may evolve to a change of sign at high pressures. Similar trends have been observed for long-chain oligomers + small chain oligomers. This behavior was discussed in terms of the ($T-p$) minimum location, which locates the p-DCP. And they conclude that, most probably, for those systems where $\frac{dT}{dp}>0$ at atmospheric pressure, there is a pressure-hypercritical region lying in the “hidden” mechanically metastable domain of $p<0$.
    • From Fig. 9a of [929], it is clear that the deviation occurs in the presence of added NaCl also. However, the authors found that the deviation from the CH relation still has a negative slope value, which is consistent with the sign of the slope for the C-H equation. Unlike in the case of added NaCl, the deviation in the CH plot (Fig. 9c there) for DDAB at a low concentration of added NaBz is more drastic with a reversal in the slope sign from negative to positive, which highlights the limitation of CH to mixed counterion solutions.
    • The slope in [715] is proportional to the second virial coefficient $А_{2}$, the sign of which indicates the thermodynamic “quality” of solvent is. Thus, in this case, at concentrations of solutions lower than $0.05$ and greater than $1mol\cdot L^{-1}$, the solvent is suitable ($А_{2}>0$), while at the intermediate concentrations the solvent poor ($А_{2}<0$).

Biochemistry

    • In [787], the Hammett plots obtained for all products using both nucleophiles showed a change of the slope sign, with a concave shape for all the compounds in both reactions. It suggests that different mechanisms operate, depending on the tethers' electronic properties in bisallenes with both nucleophiles. It is remarkable given the inherent electron-withdrawing nature of the sulfonamide group.
    • The hydrophobic behaviour in [695] is reflected in a sign reversal of the temperature-dependent slope of the Soret coefficient, which is observed in experiments and non-equilibrium computer simulations at $\sim5M$ concentration of urea in water. A positive Soret coefficient indicates that the solute accumulates on the cold side (thermophobic), while a negative sign denotes drift towards the warm side (thermophilic).
    • A plot of the $\ln\left(Ka\right)$ vs. $\ln\left(\left[NaCl\right]\right)$ in [918] fit to a simple linear regression provides a magnitude of the slope. The slope sign relates to the change in the number of ions involved in the duplex formation. A negative slope suggests ions are ejected into the bulk solution, and a positive slope suggests that ions are incorporated into the duplex.

Physical Chemistry

    • The sign of shifting from the s level in [878] depends on the sign of the velocity's second derivative. The energy decreases with increasing orbital for the positive sign, and for the negative sign, it increases with the orbital. The latter situation occurs in atoms, and both variants may occur in clusters.
    • Lemma 1 of [874] states that given some monotonicity conditions, a particular order is preserved. Neither the derivative nor its sign is required to prove the claim. Further, in section 10.3.3 there, the sign of the derivative is examined to show the monotonicity of the ratio. It, in turn, offers the ordering relation given in lemma 1 is valid for this family.
    • The phases of the signals in [926] depend on the sign of the derivative of the resonant frequency with respect to the magnetic field.
    • The time derivative sign in [210] is different for maxima and minima of spectral interference oscillations.
    • The charge, charge flux and dipole flux in [884] can be positive when both derivative contributions are of the same sign, reinforcing the total intensity, or negative when the contributions have opposite signs, decreasing the total power.
    • [11] calculates the derivative sign across different sets and calculates the probability of having two sets with other derivative signs.

Particle Physics

    • Based on an analysis of the sign of the slope, it was found in [714] that the electric dipole moments for the $Ar^{-}NO^{+}$ and $Kr^{-}NO^{+}$ and $Xe^{-}NO^{+}$ systems are positive for the considerable distance but suddenly change the sign for a shorter distance.
    • The factor $g$ given by Temkin isotherm in [4] is positive, as the sign of the slope of the isotherm (logarithmic form) is positive. The interactions involved are so repulsive and weak. It confirms the excellent correlation of Langmuir that neglects interactions between adsorbed species.
    • In [645], the sign-changes of the derivative of the resistivity yield critical electron densities for the MIT.

Electrochemistry

    • Plotting $\frac{E}{I}$ vs. $I^{-1}$ in [768] produces a curve with two sections corresponding to reactions (2) and (3), respectively. Each section consists of three zones separated by turning points where the slope of the curve changes sign or direction. Figure 6 there shows the $\frac{E}{I}$ vs. $I^{-1}$ curve for a rotation rate of 100rads^{-1} where the zones and turning points for reactions (2) and (3) are indicated. In the first zone, the current is small, both terms $\frac{E}{I}$ and $I^{-1}$ are large, and the curve is steep. Zone two occurs when the curve approaches the limiting current region, the current becomes constant, and the slope of the curve changes sign after the first turning point. A peak is observed if the limiting current region is completely horizontal. It is not always the case since a secondary reaction often accompanies the main reaction, and often other complications such as $IR$ drop and charge transfer effects exist. As shown in the figure for the $Cu\left(I\right)\rightarrow Cu\left(0\right)$ process, zone two is more commonly found. Zone three arises when the potential and the current increase beyond the limiting current region; the sign or direction of the slope changes again at the second turning point, and both terms $\frac{E}{I}$ and $I^{-1}$ become smaller, making the curve very steep again. The changes in the sign of the slope in this zone depend on whether the $\frac{E}{I}$ vs. $I^{-1}$ curve includes data of the secondary reaction or not.
    • In [641], the center initially increases with potential. Deviation from this linear trend is observed at the pre-peak current onset, and the slope sign is completely reversed by 0.3V. Finally, by 0.47V, the center stabilizes and remains constant until the end of the pre-peak. The initial positive $\frac{\partial\Delta v}{\partial E}$ slope is similar to the slopes reported previously for different sized $\frac{P_{t}}{C}$ catalysts and is consistent with the electrochemical Stark effect. The subsequent negative slope is also compatible with results, which showed a pre-peak at 0.3V that correlated with a reversal in the sign of $\frac{\partial\Delta v}{\partial E}$. The negative slope region has been attributed to a decrease in dipole coupling strength as the CO coverage decreases. The negative slope has further been interpreted as evidence for high mobility of CO on the surface on the basis that diffusion would be necessary to enable the whole adlayer to equilibrate with the lower coverage and show an overall redshift.
    • [519] demonstrates, using a simple electrostatic dipolar model, that not only can the surface-induced frequency shift for OsH and OHfbe described by the same model but also OHw. The model is expressed by Eqn (5) there. All three OH groups are part of the same general scheme where the main ingredients are the external electric field from the surroundings as well as the permanent and induced dipole moment derivatives along the OH stretching coordinate. The authors concluded that it is the sign of $\frac{d\mu}{dr}$ which is the ultimate origin behind the different frequency shifting behavior of the water molecules and the OH- groups.

Diffusion

    • Fig. 7 of [767] presents predictions from the lattice model for the Soret coefficients of equimo-larn-alkane/benzene mixtures as a function of temperature. In agreement with the experimental data shown in Fig. 3, the $ST$ values calculated from Eq. (11) increase with increasing chain length. As in the case of the experimental data, the slope of the Soret coefficients as a function of temperature decreases with increasing chain length. However, at this composition, the predicted slope of $ST$ versus $T$ is positive for all chain lengths, whereas the experiments show a negative slope for the longest chains. The sign of the slope is composition-dependent. For low alkane concentrations, both theory and experiment show positive slopes for all chain lengths. As the alkane content increases, the slope decreases and becomes negative for the longest chains at high alkane concentrations. For tridececane, for example, the experimental data presented in Fig. 4 show the Soret coefficient to increase with temperature for $x=0.25$, to be almost independent of temperature for $x=0.5$, and to decrease with temperature for $x=0.75$. The calculated ST values for tridecane change from increasing with temperature to reducing with the temperature at a higher alkane content ($x=0.92$) and only after the estimated Soret coefficients have become positive. For heptadecane, the change in behavior in the experimental data occurs for a concentration smaller than $x=0.5$, while the calculated values change behavior near $x=0.78$. Fig. 8 shows Soret coefficients as a function of chain length N of the alkanes at a fixed temperature of $30^{\circ}C$ for the same mixtures as in Fig. 7. A comparison between theory (open symbols) and experiment (filled symbols) shows that the model describes well the trend in the chain length dependence but that the calculated $ST$ values are always between $0.5$ and $1.3\times10^{-3}K^{-1}$ higher than the experimental values at this composition.
    • The drift coefficient in [436] is related to the negative slope of $U_{\ell}\left(x\right)$ by $D_{2}\left(x\right)=-U\prime_{\ell}\left(x\right)$. So one can gain some qualitative understanding of how the peak of the probability density moves just from the sign of the slope of $U_{\ell}\left(x\right)$. The peak of $p\left(x,t\right)$ tends to move to the right (left) when it is at a position $x$ such that $U\prime_{\ell}\left(x\right)$ is negative (positive), until the stationary distribution is reached. Fig. 1 there depicts $U_{\ell}\left(x\right)$ for $g=0.5$ and $\ell=0$ (the original Rayleigh process), $1$ and $5$. There can be a sign change of the slope of the drift potential in a certain region near the left wall. In such a region, the peak of the probability density function will move in different directions for different $\ell$. Particularly, at $x_{0}=1.2$, the sign of the slope of $U_{5}\left(x\right)$ is different from those of $U_{0}\left(x\right)$ and $U_{1}\left(x\right)$. Thus one expects that for the initial profile $P\left(x,0\right)=\delta\left(x-x_{0}\right)$ with the peak initially located at $x_{0}=1.2$, the peak will move to the right for $\ell=5$ system, while for the other two values of $\ell$, the peak will move to the left.

Zoology

    • The performance of two chemotaxis strategies were contrasted in [474]: The first obeys the sign of the first derivative only and follows the classical biased-random walk strategy. The second strategy implements the ability to adapt to the first derivative of the gradient. These simulations were intended to examine the possible benefits of adapting to the magnitude of the experienced first derivative rather than simulating a fully-detailed model to fit the experimental observations.

Ecology

    • Ordered linguistic variables can be said to be increasing, steady or decreasing with respect to the quantity against which support set elements are ordered. Given an ecologically meaningful interpretation, it may be helpful to define relationships between the direction of change expressed as $\left\{ +,0,-,zero\right\}$ and influencing variable values, as illustrated in [640].
    • In equation 3 of [251], the community matrix incorporates the influence of one or more species on a pairwise interaction. It does so by generating terms that either modify the intensity of the pairwise interaction or establish what can be formally considered as direct effects emanating from $N_{j}$ to species $N_{i}$ and $N_{k}$ involved in the pairwise interaction. Its sign structure (which is also influenced by the signs of the partial derivatives) tells which species directly affects other species and suppresses other interactions.
    • The equilibrium stability in Eq. 12 of [777] depends on the sign of the derivative of $-\frac{ax}{1+x}-bx+c$ evaluated at the equilibrium. This equilibrium will be stable if this sign is nonpositive and unstable otherwise. Further, this equilibrium is asymptotically stable if the derivative sign is negative.
    • In the comparative dynamic analysis of [566], a sensitivity analysis of the key variables of the model is conducted with respect to the set of parameters. The results are described in Table 1 there. Each box indicates the sign of the partial derivative of the variable mentioned inline with respect to the parameter given in the column. This sign can be positive ("$+$") or negative ("$-$"). An empty box means no relation between the variable and the parameter, whereas "$?$" indicates an ambiguous sign.
    • [803] applies the sign of the first and second derivatives upon fitting a quadratic polynomial that captures the trend of a time series.
    • [441] explores the effect on acceptance rates of small changes in ecological parameters that affect one (or two) of the composite parameters $a$ to $f$ (appendix E). The findings are summarized in table 2 there; further, the discussion is given under the various applications.

Biotechnology

    • As it is possible to observe in Fig. 4 of [477], an example of two doughs, in which the evolution of the ratio $\frac{\Delta A}{\Delta H}$ and $R^{2}$ of Pearson are drawn, peaks and valleys could be identified (between broken lines). Peaks were considered when data from $R^{2}$ change their derivative sign from positive to negative (derivative zero value), and the function value is equal or higher than the previous peak. $R^{2}$ of Pearson and $\frac{\Delta A}{\Delta H}$ had an inverse tendency with time. When $\frac{\Delta A}{\Delta H}$ decreased, because the higher velocity of $H$ changed, $R^{2}$ increased, evolving the shape of the dough surface to a theoretical arc. Inverse behavior could be obtained when the $A$ velocity was higher. The recount of the number of peaks at 100min (NP100, Table 3 there) showed how this number is related to dough evolution and could be used to discern the final behavior of doughs (Fig. 6). In doughs that did not substantially vary in their transversal area between 100min and their last fermentation time (first doughs), the number of peaks did not increase, reaching their highest number. On the other hand, doughs which increased their transversal area, also increased their number of peaks (Table 3).

Physiology

    • It is required to detect the events of the sign changes (heel-strike and toe-off) to separate the stance and swing phase in [401], on top of the velocity sign changes.
    • Due to fluctuations in the speed measuring, the algorithm in [1024] could not recognize the periodic shape. Another method to filter the swimmer’s profile has been to apply the change of the sign of derivative as a counter to isolate periods.
    • The forces in the $y$ and $z$ directions during the contact with the wall are modeled (Eq. 2-3 in [670]). They are based on the signs of the respective velocities of the right heel.
    • [921] neglects the symmetric drag force acting on the main body and only considers the fin's drag force in the form of Eq. 14, which incorporates the velocity sign. In turn, it allows us to write Eq. 13 in the form that also depends on the velocity sign. It also plays a part in other equations, such as 18, 19, 25, and 26.

Medical Experiments

    • If the conditions of Proposition 4 in [189] are satisfied, the experimenter cannot rely upon the sign of the treatment-control difference to distinguish between the two efficacy states. In this situation, the experimenter would need to rely upon magnitudes of the treatment-control difference to determine the state. However, interpreting treatment-control volumes is more difficult since magnitudes depend upon unobservables such as mental effect functions. However, with the more effective control, the treatment-control difference is shifted downward so that the sign of the difference suffices to infer the state.

Heart

    • Step 6 of identifying the fiducial points in [909], Proceeds with the P wave detection. The process is similar to $T$ wave peak detection, except that the search is in the other direction of QRS complex. A peak is defined as a local maximum where the sign of the derivative changes and smooth descent occurs on either side. With this step, the first stage of wave detection gets completed for the normal beat. The absence of a $P$ or $T$ peak is also noted. Cross-checks are introduced for negative wave detection.
    • the "Score" in [657] measures the similarity between the derivative sign of the samples of the pattern of the encoded signal.
    • A signed gradient descent algorithm with a constant step size was developed in [654] to register the reference $3D$-LOC to the other $3D$-LOC images acquired at different cardiac cycles using a $3D$ translational parameter ($t_{SI}$, $t_{AP}$, and $t_{RL}$) which estimates the bulk translational displacement of the heart.
    • the signs of the one-sided numerical derivatives calculated in Eq. 1 in [905] are applied in the local peak counter mechanism (figure 4 there).
    • The (discrete) derivative sign is applied to detect maximum peaks in [642] (equations 7 and 8 there).
    • The signal-processing methods proposed in [858] were developed to investigate the feasibility of monitoring ablative therapy for the myocardium by identifying the point at which the slope of the thermal strain curve changes sign caused by the speed of sound and thermal expansion variations with temperature.
    • The final voxel location in [358] was chosen based on two criteria. One of them is the peak velocity (sign change).

Diabetes

    • In [272], cooperative systems form a class of monotone dynamical systems in which the partial derivatives are positive. Graph theory also allows analyzing monotone and cooperative systems by using a species graph, in which a node is assigned for each compartment of the model. If the node $x_{i}$ has no direct effect on node $x_{j}$, the partial derivative $\frac{\partial f_{j}}{\partial x_{i}}\left(x\right)$ equals zero; thus no edge is drawn from node $x_{i}$ to node $x_{j}$. If the effect of the node $x_{i}$ on node $x_{j}$ is positive, the derivative is strictly positive, and an activation arrow ($\rightarrow$) is drawn. Finally, if the effect is negative, an inhibition line is drawn. However, if the derivative sign changes depending on the particular entries, both an activation arrow and an inhibition line are drawn from node $x_{i}$ to node $x_{j}$. A spin assignment is an allocation in which each node has a sign, such that nodes connected by an activation arrow ($\rightarrow$) have the same sign, while nodes connected by an inhibition line have different signs. If at least one consistent assignment exists, the dynamical system is monotone. Furthermore, the system is cooperative if all nodes are connected by activation arrows ($\rightarrow$).

Cancer

    • In [756], the derivative sign difference (DSD) calculates the number of times the pixels’ spectral derivatives are of opposite signs.

Muscles

    • SSC, the number of times the sign of the slope changes, is extracted as a feature of the EMG signal in [610, 987, 971, 174, 324]. The number of peaks was measured based on the product of the signs of the numeric one-sided derivatives at each datapoint.

Skeleton

    • The algorithm that has been used in [809] for the detection of the fringes generates a binary image with the sign of the angle of the derivative vector at one of its steps.
    • In [482], the intensity change may be gradual at a transition point instead of a step function. Indeed, one can see a gradual decrease in brightness. To better address gradual brightness changes, the sign of the derivative is used.
    • [875] placed electrodes on the flexor digitorum superficialis (FDS) and extensor digitorum (ED) muscles, and performed feature extraction by picking Hudgins' features. One of them is SSC. It indicates the frequency information of the EMG signal, as the number of times the slope changed from positive to negative or vice versa.
    • Finally, the friction torque in [1036] can be modeled as in Eq. 4 there. It incorporates the sign of the derivative of the motor-side angle. It is further developed in Eq. 5, 7, 9, 11.

Eyes

    • Each one of the four directional images resulting from the DoOG filters in [648] is searched for specific combinations of signs on the expected direction of the vessel cross-section. The search is performed on one-pixel-wide lines with orientation corresponding to the vessel cross profile, which means that the scanning direction is distinct for each of the four images under analysis. As actual vessels do not have the ideal profile presented in Fig. 3(a), the authors empirically assessed several combinations of filter responses that can characterize a vessel. The result was the set of four combinations indicated in Fig. 3(c). In this figure, plus and minus signs correspond to positive and negative derivative responses, respectively, $0$ is associated with a null output, and $X$ is a do not care condition meaning that the derivative sign is not evaluated (conditions 2 and 3). However, in these two cases, the average value of the derivative magnitudes (ADV) for the intensity profile under analysis must be positive for condition 2, and negative for condition 3. The ADV value gives a good indication if the vessel is located in a region with a slowly varying baseline on the vessel cross profile direction. It can make the values of the derivatives dominantly positive (condition 2) or negative (condition 3). To illustrate this process, consider the simple example for vessels with a predominantly vertical orientation. We need to analyze the derivative signs in the direction of the vessel cross-section.
    • Further, in [350], the centerlines are extracted using first-order derivative of a Gaussian filter in four orientations, and then evaluation of derivative signs and average derivative values is performed.
    • The iteration-dependent weighting function in [273] depends on the sign of the derivative of the reflectivity recorded in a discrete voxel position.
    • Moreover, the number of critical points at which the first derivative of centerlines vanishes was quantified in [523] for each centerline based on frequency of changes in sign of the slope of the tangent lines.
    • Finally, the initial attempts of [180] to segment the layers in retinal OCT images employed simple image processing techniques and focussed on the segmentation of only a few prominent layers. Each A-scan in the OCT slice was segmented individually based on peak, valley, and/or signed gradient analysis of the intensity profile. This approach had some problems, to which this work suggests workarounds. The interaction between each pair of adjacent points on the lth boundary is modeled as a linear combination of a shape prior and an appearance term. The shape prior between $\left(x\left(n\right),x\left(n+1\right)\right)$ is a soft constraint that penalizes large deviations of the signed gradient of the height values $\left(x\left(n\right),x\left(n+1\right)\right)$ to preserve the local smoothness of the $l^{th}$ boundary. A Gaussian function models the deviation. The mean and the standard deviation of the signed gradient are pre-computed for each layer and column using the ground truth layer markings of the training images.

Brain

    • Consistent with the view that AD patients are more impaired in semantic fluency tasks than letter fluency tasks, AD patients were found to have a negative slope for category type. It indicates that they recalled more items from letter categories than semantic categories, as illustrated in [286]. On the other hand, normals had a positive slope for category type, which indicates that they recalled more items from semantic categories than letter categories. This difference in the slope sign was actual even when log-transformed fluency was the dependent measure. Thus, AD patients recalled a smaller proportion of exemplars from semantic categories than from letter categories compared to controls.
    • In [871], the ADC values and the rADC values in hyperacute and acute lesions had gradient signs that these lesions increased from the center to the periphery. The ADC values and the rADC values in subacute lesions had adverse gradient signs that these lesions decreased from the center to the periphery.
    • In [386], PE quantifies the probability that, within a signal, a segment will resemble the next. Equally, changes in the direction of the signal (slope sign) result in complexity increases, while a steadily positive or negative slope would be associated with less complexity. Thus, a signal with only one phase per cycle would have lower complexity than others with various phases.
    • Because of the mean-centering of both regions in [935], the best-fit line passes through the origin. Thus points in these quadrants support a positive slope. If the one-time course has a positive value and the other has a negative value, the time point falls in the second or fourth quadrant, which supports a negative slope. The relative balance of points in quadrants $1/3$ versus $2/4$ thus determines the sign of the slope. Because of the variance normalization, the value of the slope is the Pearson correlation coefficient.
    • One of the extracted features in [513] is “peak amplitude,” describing the base-$10$ logarithm of the mean-squared amplitude of the peaks, where a peak is defined as a change from negative to positive in the signal derivative sign.
    • In [581], a change in the sign of pupil coefficients across the breakpoint indicates a nonmonotonic relationship between pupil and firing rate. The direction of the sign change shows if a cell is a $U$ or inverted $U$. A difference in the sign of the slope between segments indicated a nonmonotonic relationship between pupil size and spiking activity. The accuracy of this model was compared to a similar model in which slope could vary between segments but where both line segments were constrained to have the same sign. The effect of the pupil-associated state usually had the same sign for both spontaneous and sound-evoked activity within a single neuron, in contrast to earlier results suggesting that intermediate pupil sizes were associated with opposite changes in spontaneous and evoked activity.
    • A significant difference between the HFB activity and the low-frequency bands in [755] is the sign of the slope of the correlation between ECoG and BOLD activity. For the HFB, higher ECoG activity correlated with higher BOLD activity, while the opposite was true for alpha.

Respiratory System

    • In the study of respiratory systems, the algorithm in [101] automatically analyses the derivative sign, detects when it changes, and checks if that sign is kept for at least three samples. In detail, if the sign changes from negative into positive, a new breath is detected. If the sign changes from positive to negative, the breath passes from inhalation to exhalation. The algorithm checks that the change of the sign persists for at least three samples to avoid disturbances overlaid on the signal, which may cause an incorrect count. This way, the algorithm automatically counts the number of breaths.

Blood Vessels

    • Trends are also useful when analyzing blood vessels. The problem of detecting the ridge points is reduced in [242] to the problem of detecting the sign changes of the gradient vectors projected onto two scanlines with sufficiently different orientations. It suggests a simple scanline algorithm using the horizontal and vertical scanlines, $S_{x}$ and $S_{y}$, respectively. The authors define a set of gradient sign changes that can be used to identify ridge points present in grayscale images. The ridge points are extracted from the topological surfaces by detecting the gradient sign changes on two orthogonal scanlines.

Drugs

    • To spot potential errors, [303] graphs the data split by the number of gradient changes within the data to spot potential errors. A change in the sign of the gradient of three successive measurements is given if an increase or vice versa follows a decrease. To further highlight changes in gradient, we indicate increases with green upward-pointing triangles, declines with red downward-pointing triangles, and no movement with gray squares. Figure 1 depicts observed concentration versus time after the dose, split by the number of changes in the gradient sign during the period studied. The majority of the profiles have at most one change in the sign of the gradient. Selecting subjects for whom there are unexpected changes in the gradient sign will often expose data groups that may require further analysis or query.
    • In [141], features for which models in the ensemble agree on the derivative sign most routinely are interpreted as those of most importance to the ensemble’s performance. Consistency is thus insensitive to the magnitude of a feature’s influence.

Health Physics

    • The trend of the function's rate (the sign of the second derivative) is applied in [872] to classify the inflection point.

Neurology

    • The sign of the slope of the E-PG phase equation in [709] indicates the direction of the bump’s circular movement. In most cases, the trend is positive, meaning that clockwise wind shifts produce clockwise bump rotations, as viewed from the posterior side of the head.

Epidemiology

    • In [50] the sign patterns of the signs of the Jacobian matrix aid in classifying the local stabilities at the equilibria.
    • [390] is interested in analyzing the impact that small perturbations in the parameters of $\left(\beta_{1},\beta_{2},c,\beta\right)$ have on the summary statistics, whence Table 2 there lists values of elasticities (i.e., $\left(\theta^{-1}D\right)^{-1}\frac{\partial D}{\partial\theta}$) for summary statistics $D$ and parameter $\theta$. Further, the authors hold an extensive qualitative discussions with insights that follow from the sign of elasticities (which is identical to the sign of the partial derivative $\frac{\partial D}{\partial\theta}$).
    • The apparent epidemic peak in [163] occurs when $I'=0$, whereas we know from the fact that SIRD-like dynamics govern the epidemics that the actual peak happens when $D''=0$, i.e., when the number of deaths/day reaches a maximum. Thus, Eq. (4) can be interpreted as follows. Whether the apparent peak is observed before or after the true peak depends on the sign of the rate of reporting, $\alpha'\left(t\right)$. More precisely, if the testing activity is steadily ramping up ($\alpha'>0$), the true peak will occur earlier than the apparent one. The reported infected will have a maximum for $D''<0$ i.e. past the maximum of the $D'$. Conversely, if the testing rate decreases, this will anticipate the apparent peak, giving a false impression that the worst might be over. At the same time, the actual number of infected is, in fact, still increasing. We find that this analysis applies to all countries considered in this paper (see also supplementary material), whereby either the former or the latter scenarios are invariably observed.
    • The derivative of the basic reproduction number with respect to the commuter ratio in [857] is analyzed extensively. In lemma 1 the authors prove that the reproduction number is monotonically decreasing, according to the limit of its derivative sign.
    • [53] mentions that they do not have any sufficient condition for monotonicity of functions by knowing the sign of their Caputo-type derivative. The lack of such satisfactory condition can also be seen from the phase portrait in Figure 3, as the maximum is reached in a region in which $\frac{dI}{dt}$ is still strictly positive. Recalling the Fermat theorem on extremal points becomes an inequality in the non-local context, justifying that, after the function reaches a maximum and starts decreasing, the non-local derivative could still be non-negative.
    • Proving monotonicity properties in [258] regarding the function $g$ in lemma 4 based on its derivative sign, then leveraging the sign consistency while applying the Dulac criterion based on equation 16.

Well-being

    • In [61], the response to a preference query gives information about the sign of derivative of utility function at the indoor air temperature where we ask these queries. Essentially, the experimental data $y$ is noisy observations of the sign of derivatives $u'$. The likelihood function is a model of the measurement process, and it establishes the connection between y and u. The authors define $p$ as a function of $v$, $y$, and $u'$. The proposed likelihood encodes the following intuitive characteristics. First, the possibility is high when $y$ and $u'$ have the same sign. Second, it is low when $y$ and $u'$ have opposite signs.

Systems Biology

    • The species graph has n nodes (or “vertices”), which [902] denotes by $v_{1},\ldots,v_{n}$: One node for each species. No edge is drawn from node $v_{j}$ to node $v_{i}$ if the partial derivative $\frac{\partial f_{i}}{\partial x_{j}}\left(x\right)$ vanishes identically, meaning that there is no direct effect of the $j^{\text{th}}$ species upon the ith species. If this derivative is not identically zero, then there are three possibilities: (1) it is $\geq0$ for all $x$, (2) it is $\leq0$ for all $x$, or (3) it changes sign depending on the particular entries of the concentration vector $x$. In the first case (activation), we draw an edge labeled $+$, $+1$, or just an arrow $\rightarrow$. In the second case (repression or inhibition), we draw an edge labeled $-$, $-1$, or use the symbol $\dashv$. In the third case, when the sign is ambiguous, the authors draw both an activating and an inhibiting edge from node $v_{j}$ to node $v_{i}$.
    • Part D of Fig. 2 in [69] shows the Jacobian matrix with the sign of the derived regulatory interactions between the slow variables of the system. Further, Tables 1 and 2 show the relative expression changes for the genes that are included in the models $M_{glyco}$ and $M_{neo}$. As shown in Table 1, the sign of the changes in expression is consistent between the two data sets, bearing in mind the experimental uncertainty. Finally, Fig. 6 shows an example of a qualitative simulation of the glucose–acetate diauxie (Section 2.3). The vertical axis shows the symbolic values of concentration variables, and the horizontal indicates the qualitative states of the system. The selected pathway illustrates the typical dynamics of protein concentrations following the shift to acetate. The glycolytic enzymes are the first to respond. Global regulators respond later once a sufficiently high level of Pps $A$ is reached. The derivative sign of concentration variables in each qualitative state is explicitly indicated.

Genome Biology

    • Each qualitative state in [85] corresponds to a self-transition (loop) state in the Lts. The label of this loop encodes all the properties of the corresponding qualitative state: its name, the range and derivative sign of protein concentrations, and additional properties.
    • In [68], SRC is compared to a frequently used qualitative measure that compares the sign of the first-order differences (i.e., the ups and downs) of two series.
    • As illustrated in [529], by inspecting the sign of the slope for two given time points, it can be decided whether the slope is tilted to the right or left. The average value is then calculated from multiple points on the curve. Depending on the sign of the slope index, it can hence be deduced whether $x_{i}\left(t\right)$ activates or inhibits $x_{j}\left(t\right)$. In this article, the authors adopt this approach in the case of time-varying models. The slope index is now defined using $x_{j}\left(t\right)$ and $a_{ij}\left(t\right)x_{j}\left(t\right)$, since the authors consider the direct effect of $x_{j}\left(t\right)$ on the time derivative of $x_{i}\left(t\right)$. The slope index, $SI$, is therefore defined in equation 7.
    • In [761], a simple sign rule relates the sign of the derivative of the feedback function of any locus to the feedback loops involving that particular locus.
    • In [220], the genes were classified into upregulated and downregulated groups. It was done by their expression trend along the recovered order of these $172$ cells. The two groups were defined by the sign of the slope coefficient in the gene-specific linear fitting. The genes with positive (negative) slope coefficient were defined as up- (down-) regulated from early-$36$ hcells to late-$36$ h cells.
    • The peak detection algorithm in [853] is based on changes in the sign of the numerical derivative.

Cellular Biology

    • In [839], the zeros of $f\left(h\right)$ correspond to steady states, which can be stable or unstable depending on the sign of the slope $\frac{df}{dh}$. Negative slopes correspond to stable and positive slopes to unstable situations. Depending on the $\alpha$ and $\beta$ values, one, two, or zero steady states may exist.

Microbiology

    • The sign of the derivative of $S_{n}$ in [106] is that of the real part of $\lambda$ at $i\omega$.
    • The signs of the partial derivatives of the total mass of drug released with respect to various other parameters in [110] indicate the previewed behavior.

Evolution

    • The sign of the gain function derivative in [722] is computed in equation 13 there. It assumes a monotonic and continuously differentiable fitness landscape. The influence of constant learning on evolution solely depends on the second derivative of logarithmic fitness: Positive (negative) $\left[\ln f\left(x\right)\right]''$ implies learning-induced acceleration (deceleration) for this type of learning. Further, given some evolutionary data (in the absence and the presence of learning), we can deduce the sign of the gain function. In other words, we learn something about the effect of learning on fitness.
    • In figure 1 of [717] the authors illustrate the derivative signs of several parameters and how they combine to affect the rate of evolution eventually. Pathways by which predation intensity, $k$, can affect the rate of prey evolution, $\frac{dz}{dt}$. Boldface lines show our two examples: the evolutionary hydra effect (top) and the selective push (bottom). Positive and negative symbols give the sign of the partial derivative of the right variable with respect to the left variable in our examples (e.g., the negative symbol betweenkandNindicates that prey density, N, declines with increasing predation intensity, $\frac{\partial N}{\partial k}<0$). Increasing predation intensity increases the rate of prey evolution (toward larger trait values) via a specific pathway when the product of the signs along that pathway is positive.
    • Following equation 6 in [260], by definition of conflict occurring at the ESS, we have $\frac{\partial H\left(c^{*},v^{*}\right)}{\partial v}<0$. As a result, host fitness will increase - and thus, conflict from the perspective of the host will decrease — only if $v < v^{*}$. From above, we see that this requires that the slope of the reaction norm be positive. Otherwise, the fitness of the host will decrease, and thus it will experience more conflict. Last, we note that the sign of the slope of the optimal reaction norm is determined by the sign of the mixed partial derivative. This measures how selection on the clearance rate of the host changes as parasite virulence increases.
    • Two of the nine vocal parameters in [495] are new and frequency-time excursion length (Ju and Podos et al.). They potentially reflect phonological complexity: frequency-time excursion length and changes in concavity. Treating a tonal song trace in a spectrogram as a function in frequency-time space, the value for changes in concavity is the number of times the slope of that function goes from positive to negative or vice versa (i.e., the number of critical points in the derivative of the trace). In other words, changes in concavity measure the number of times a song trace changes direction (up vs. down) in frequency. These two measures are distinct; for instance, the same high frequency-time excursion length can be accomplished either by traversing a high-frequency bandwidth with a few changes in concavity or a low-frequency bandwidth with many modifications in concavity (high convolution).

Differential Equations

    • For some crucial classes of PDE, which have the common feature of a single-value $\lambda\left(A\right)$ function, the criteria to understand and anticipate the dynamics of nonlinear systems by the analysis of steady-state solutions are based on the sign of the derivative $\lambda'\left(A\right)$. [764] discussed it.
    • Lemma 3.7 in [111] studies the monotonicity of the function $\sigma$.
    • In [620], classical conditions for asymptotic stability of periodic solutions bifurcating from a limit cycle rely on the sign of the derivative of the associated bifurcation function at a zero. This paper shows that, for analytic systems, this result is topological. It means that it is enough to impose a sign change at the zero without any assumption on the successive derivatives.
    • Some oscillatory phenomena in physics, population, biomedicine and biochemistry are described in [740] by positive functions having sign-changing first derivatives. Here, it is studied for all positive, not necessarily periodic solutions of a large second-order non-linear differential equations class. It is based on a new reciprocal principle. The classic oscillations of the corresponding reciprocal linear equation cause the sign-changing first derivative of every positive solution of the main equation. The first main result (theorem 3.1 there) relates the oscillating solutions $y\left(t\right)$ of the reciprocal equation (2.2) with the positive solutions $x\left(t\right)$ of Eq. (1.1) having sign-changing $x'\left(t\right)$. It is then used to derive various criteria for sign-changing $x'\left(t\right)$ of every positive solution.
    • The encircled numbers in [1026] indicate the period for each case. The sign inducates whether the first extremum in the solution is a maximum ($+$) or a minimum ($-$), respectively.
    • One of the sufficient conditions for stability in [15] is connected with the derivative sign of the Lyapunov function.
    • In [337], the slope of $\log\left|H\left(t\right)-H_{n}\right|$, asymptotically with respect to time $t\rightarrow\pm\infty$, then coincides with the Floquet exponent. It determines the instability or stability of the periodic solution, depending on the positive or negative sign of the slope.
    • The main results in [949] (theorems 1,2 there) both require conditions and prove claims regarding the derivative sign of s.
    • [37] provides results on the sign of the Green function (and its partial derivatives) of an $n$-th order boundary value problem subject to a wide set of homogeneous two-point boundary conditions.
    • Condition 3.10 in [730], which is assumed in several results, states that the first $n-1$ derivatives are monotonic and of a constant sign.

Real Analysis

    • [384] formulates generalizations to the derivative tests based on the signs of derivatives of different orders and the mean value theorem.

Complex Analysis

    • The sufficient hypothesis in [381] is the monotony of the function between any two grid points (note the function might be globally non-monotonous by being allowed to change derivative sign at the grid points themselves). If the function is strictly decreasing, then it is bound. Then, to arbitrarily shrink the error in our knowledge of the initial condition, one needs to arbitrarily shrink the grid spacing to constrain the function in every subinterval further.
    • In [104], the signs of the first and higher-order derivatives of $\varphi$ (Eq. 2.3, lemma A.3) and other terms (Eq. A.1, A.2) are applied in monotonicity properties analysis throughout the theoretical discussion.

Numerical Analysis

    • [165] is motivated by the numerical computation of dislocations dynamics where the velocity of the front can change sign.
    • [992] extends the construction of the TVD particles remeshing schemes to nonlinear conservation laws with a possible change of velocity sign, with application to Burgers and Euler equations.

Algebra

    • When the sign of the derivative of the determinant in [514] changes, we may use techniques such as the bisection method to narrow the interval within which the sign changes and thus pinpoint singular values.
    • In [380], if $F$ has $n$ distinct real roots, then the total signature is defined as the weighted sum of its derivative signs.
    • [618] applies Hardy's notion of "False derivative" of a function, whose sign agrees with the function's derivative sign at the zeros of the original function.

Mathematical Optimization

    • The signs of the function's discrete derivatives (the finite difference) are applied in some of the formulas in [917].
    • If a polynomial and its derivative are co-prime, then the sign diagram of its derivative is used to compute its sign diagram, as illustrated in [661].
    • In [567], as $C$ is an $\ell_{1}$ ball constraint, the linear optimization in Line 4 of Algorithm 1 or (3) in Algorithm 2 can be evaluated based on the gradient sign as $a\left(t\right)=-r\cdot sign\left(\left[\nabla F_{t}(\theta_{t})\right]_{i}\right)\cdot e_{i}$, where $i=argmax\left(\left|\left[\nabla F_{t}\left(\theta_{t}\right)\right]j\right|\right)$ subject to $j\in\left[n\right]$.
    • The first step in proving the main result of [216] is reducing the problem to analyzing the sign of the derivative of a function defined on the real line.
    • In order to prove theorem 1 in [446], it suffices to show that the sign of the first derivative of each function changes at most twice while $\lambda$ increases. In turn, since the denominator in the derivative's expression is always positive, the authors bound the number of times the sign of the numerator changes.
    • [548] praises several aspects of RProp. The simplicity of implementation, the relatively low computation effort, as only one function and one gradient evaluation are required per iteration, and the excellent convergence properties make RProp a highly efficient algorithm for large-scale problems. RProp can tolerate errors in the gradient evaluation since it is based on the partial derivatives' sign rather than their values, allowing its application to non-smooth Lipschitz continuous objective functions.
    • [780] classifies optimums based on the signs of the first and higher-order derivatives. It also relies on the local trend near the point.
    • As an alternative active set estimation scheme, in addition to the $\varepsilon$ margin, [507] considers the sign of the partial derivative so that curvature information is used for those constraints predicted to become inactive. Thus $A_{aug}$ leverages the signs of the derivatives of f.
    • The parameter $s_{i}$ in equations 18 and 19 of [568] is defined based on the product of the signs of the (discrete) one-sided derivatives of $x_{i}$ at $k-1$.
    • The first and second derivative signs in [1039] are used to define the vertices' directions.

Bayesian optimization

    • An algorithm to detect the monotonic detection of the underlying function is proposed in [586]. A novel BO algorithm is proposed to incorporate the monotonicity of the underlying function to optimize towards a target value.
    • The “virtual derivative sign” is leveraged in [883] for correcting boundary over-exploration deficiencies in bayesian optimization.
    • The function in [587] is modeled using monotonic GP by placing the consistent derivative signs across the search space.

Optimal Control

    • [846] observes that the Hamiltonian (12 there) is affine in the control input. In general, no maximum exists in this context. However, because of the linear inequality constraints on the control variable, corresponding to the hardware constraints, a solution exists by resorting to the bang-bang method with singular arcs. This method evaluates the sign of the partial derivative of the Hamiltonian with respect to $Q$, i.e., the value of $\psi$.
    • Lemma 4.2 in [207] relates the sign of the partial derivative in (4.29) to a geometric property of the optimal trajectory at the terminal time. Lemma 4.4 connects the geometric property of the optimal trajectory at the terminal time with the sign of the derivative in (4.43).

Stochastic Optimization

    • The number of derivative sign changes is an essential part of Lemma 1 in [772].
    • In section 3.2 of [330], the authors modify the original CS algorithm to incorporate information about the gradient of the objective function. Any modification to the algorithm should not change its stochastic nature not to affect its performance negatively. A modification was made to the local random walk in which a fraction ($1-pa$) of the nests are replaced. In the original algorithm, when new nests are generated from the replaced nests via a random step, the step's magnitude and direction are both random. In the modified algorithm, the randomness of the magnitude of the step is reserved. However, the direction is determined based on the sign of the gradient of the function. If the gradient is negative, the step direction is made positive. If the gradient is positive, the step direction is made negative.
    • In [975], the historical gradients lag the update of weights in the period $\left[t_{1},t_{2}\right]$ when the gradient direction gets reversed, and lead to severe oscillation about the optimal point. To ease the fluctuation, the proposed SPI-Optimizer isolates the integral component of the controller when the inconsistency of current and historical gradient direction occurs, as in Eq. 4 there. The SPI-Optimizer is further presented by Eq. 5. The key insight here is that the historical gradients will lag the update of weights if the weights should not keep the previous direction, i.e., $sgn\left(\nabla L\left(\theta_{t}^{\left(t\right)}\right)\right)$ does not agree with $sgn\left(v_{t}^{\left(i\right)}\right)$, leading to oscillation of gradients about the optimal point until the gradients compensates the momentum in the reversed direction. This way, SPI-Optimizer can converge as fast as MOM and NAG, leading to a much smaller maximum overshoot.
    • Although the approach in [108] is designed not to use explicitly derivatives, it covers some first-order methods. For instance, if the probability law is chosen to be the Dirac distribution concentrated at the gradient sign, then STP recovers the Signed Gradient Descent method, as proved in appendix B.

Dynamical Systems

    • The sign of the derivative of $V$ in [805] is linked through a simple relation to the eigenvalues. It allows localizing the sources of instability, i.e., the points at which the instability begins.
    • In [898], Chaos is due to the changes of sign of the derivative of the energy function, the so-called 'self-excited oscillations.' The discussion here is about a particular case where this isn't a necessary condition.
    • In [1017], the different distributions such as the Farlie Gumbel Morgenstern Distribution with Identical Marginals, Marshall-Olkin Trivariate, and Gumbel Type I Trivariate Exponential Distributions are also analyzed in terms of their monotonicity based on their derivative sign in part 10.3 there.
    • The sign of the slope coefficients in [149] capture the type (e.g., attractor, repeller, limit cycle) and strength of attraction for the dynamic implied by the equations. Further, the fixed effects can be interpreted as whether or not the likelihood of being in a pattern occurred. A positive sign meant that declines in a food pile corresponded to reductions in the pattern. A negative sign suggested that decreases in a food pile corresponded to increases in the pattern.
    • At the discussion about the global attractivity results in [506], the authors prove global attractivity results. They notice that the sign of the partial derivative with respect to the first variable at the equilibrium point depends on the sign of $b-a\beta$. They use this insight to prove lemma 3 and theorem 7 there.
    • It has become experimentally possible to "reprogram" a cell's fate by suitable externally imposed input stimulations. In several of these reprogramming instances, the underlying regulatory network has a known structure, and often it falls in the class of cooperative monotone dynamical systems. Their monotonicity is reflected in the constant signs of their partial derivatives. Another monotonic property that is introduced in [865] is sign-symmetry (equality of the signs of the partial derivatives).
    • In [20], the sign of the slope of f can change, but the slope of the derivative is always negative, given the presence of a global attractor. It shows how, even in straightforward examples, these quantities can have radically different behaviors and that the conditional average flow does not necessarily capture the actual behavior.

Set Theory

    • The Direct Approach algorithm in [191] calculates the partial derivatives and finds a switch point $k\in\left[1,N\right]$ for which $\frac{\partial c}{\partial u}(k)\leq0$ and $\frac{\partial c}{\partial u}\left(k+1\right)\geq0$. It is possible to find the switch point directly by locating the value of $k$ where the sign of the partial derivative changes.

Geometry

    • The proof of lemma 9.8 in [518] states that the orientation of $\Theta$ restricted to the binding is determined by the sign of the slope of $\gamma_{i}$ as expressed in $\left(\lambda_{i},\nu_{i}\right)$ coordinates.
    • The sign of the polar tangential angle function in [652] dictates other interesting properties.
    • [96] proves several lemmas by applying a monotonicity analysis to the function via its derivative sign.

Probability

    • [535] obtains a new exact Kolmogorov-type inequality, which considers the number of changes in the sign of the derivatives over the period.

Stochastic Processes

    • The aim of [602] is to extend the usual framework of SPDE with monotone coefficients to include a large class of cases with merely locally monotone coefficients.
    • In [247], an event is defined as a (typically small) set of successive instants in the original time-series having the same derivative sign.
    • The order of convergence and the sign of the ATM implied volatility slope in [338] can be easily recovered from the model parameters.
    • The "Proportion of slope sign changes" is proposed in [299] as another way of assessing convergence by taking the last n values of the EM algorithm and counting the number of times there is a change in the sign of the slope between consecutive values. If convergence is reached, the number of slopes with a positive sign is expected to be similar to those with a negative sign.
    • [376] proves the existence of random dynamical systems and random attractors for a large class of locally monotone stochastic partial differential equations perturbed by additive Levy noise.
    • In [995], a straight line can be parametrized into two different directions. The relation between $G_{\lambda}$'s slope sign and the stability of the steady-state depends on the direction of the parametrization. For one direction, we have stability for a positive slope, while stability corresponds to the negative slope for the other direction.
    • The sign of the leverage effect coefficient $\rho\left(v_{t}\right)$ is determined in [21] by the sign of the slope $\sigma$.

Gaussian Processes

    • A method for using monotonicity information in multivariate Gaussian process regression and classification is proposed in [804]. Monotonicity information is introduced with virtual derivative observations, and the resulting posterior is approximated with expectation propagation. Behavior of the method is illustrated with artificial regression examples. The method is used in a real-world health care classification problem to include monotonicity information with respect to one of the covariates.
    • As stated in [124], Gaussian processes are a powerful tool for nonparametric regression. Rprop, a fast and accurate gradient sign-based optimization technique initially designed for neural network learning, can outperform more elaborate unconstrained optimization methods on real-world data sets. It can converge more quickly and reliably to the optimal solution.
    • [806] proposes a Spatio-temporal model that considers the derivative information by jointly modeling the regular process and its derivative process using GPs. Derivative observations of both the sign and the values of partial derivatives are used to induce monotonicity (non-decreasing) and long-term saturation as a function of time. Furthermore, to force the functions to be zero at the starting timepoints ($t=0$), noise-free pseudo-observations are used at these points. Constraining the model using derivative sign observations was beneficial in predictive performance and application-specific interpretability.
    • In [807], all of the judgments about $f$ that the facilitator has elicited from the expert have followed normal distributions. This fact has allowed properties of multivariate normal distributions to be utilized. However, if a condition is placed on the derivative sign of $f$ at a point, the Gaussian process model leads to a truncated normal distribution.

Statistical Theory

    • In [394], a property of Gaussian processes can be manipulated to include judgments about the derivatives of the density, which allows the facilitator to incorporate mode judgments and judgments on the sign of the density at any given point.
    • [166] analyzes the loss function's derivative sign to prove it has a lower bound.
    • The proofs of of the main results in [91] are based on analyzing functions' trends (derivative sign).
    • Theorem 2.1 in [786] is illustrated through visualizing the sign of the derivative of the hazard function.
    • In [209], the ill-posedness of the inverse problem of recovering a regression function in a nonparametric instrumental variable model leads to estimators that may suffer from a prolonged, logarithmic rate of convergence. In this paper, the authors show that restricting the problem to models with monotone regression functions and monotone instruments significantly weakens the ill-posedness of the problem. In stark contrast to the existing literature, the presence of a monotone instrument implies boundedness of their measure of ill-posedness when restricted to the space of monotone functions. Based on this result, they derive a novel non-asymptotic error bound for the constrained estimator that imposes monotonicity of the regression function.
    • The sign change of the derivative in [672] is leveraged to prove an essential theorem within the algorithm aiming to estimate parameters consistently for LASSO.
    • Table 8 in [363] reveals a small but statistically significant effect on the market portfolio return on risky asset risk premium. Interestingly, the sign of the slope parameter for this market factor becomes negative for the highest quantiles of the distribution of excess asset returns and suggests the decoupling between the market portfolio return and firms' asset returns for substantial firms' returns.
    • The presence of multicollinearity MLE in [785] exhibits the wrong sign of the slope parameters. However, biased estimation methods may change the sign of the slope parameters. For instance, theoretically, pinnacle away win odds and maximum market away win odds negatively affect the number of full-time away-team goals, while the MLE shows a negative effect. Meanwhile, the proposed method shows a positive effect, and it is considered a good approach to tackle the problem of multicollinearity. Hence, the advantage of the proposed method over MLE using this empirical application is easily understood.

Descriptive Statistics

    • Functions' monotonicity is a crucial assumption throughout the formulation and proofs of several lemmas in [697].
    • In the proof of lemma 2.5 of [1013], the monotonicity of $V$ is proved by analyzing its derivative sign.
    • Lemma 2 in [17] formulates a sufficient condition for a segment in the normalized FDS to correspond to a segment in the original space based on the monotonicity of the edges of the input curve. Further, algorithm 1 outputs a monotone path from $\left(P\left[0\right],Q\left[0\right]\right)$ to $\left(P\left[n-1\right],Q\left[n-1\right]\right)$.

Game Theory

    • An alternative way of viewing the problem in [88] is by noticing that the sign of the second derivative of payoff function Eq. (2) depends on the sign of term $A$ with respect to other players’ mitigation levels. Thus, if $A>0$, the payoff function is not concave but convex in other players' mitigation levels. Upward sloping reaction functions could lead to more optimistic outcomes in a coalition formation game (i.e., larger coalitions). The intuition is that if mitigation levels are strategic substitutes, any additional increase of signatories’ mitigation efforts is countervailed by a decrease of non-signatories mitigation efforts. In climate change, this has been called (carbon) leakage, which makes it less attractive to join an agreement. Thus, upward sloping reaction functions may be viewed as a form of anti-leakage or matching, which may be conducive to forming large stable coalitions.
    • In [230], the sign of the slope of the best response function at a point in the strategy space is solely determined by the cross-effect on the marginal payoff function since the denominator of eq. (7.5) there is unambiguously negative.
    • [440] studies the presence of a first-mover advantage or a second-mover incentive. It also depends on the sign of the cross partial derivatives of the payoff functions at the NE. Further, Plain and strategic complements and substitutes are defined based on the payoff trend relative to the equilibrium strategy.

Decision Theory

    • The sign of the slope of the consumption stream in [297] depends on comparing the subjective factor of discount and the economic aspect of discount. But in the model, the subjective factor of discount is a function of an objective parameter, the probability of surviving. The authors needn't know the particular shape of the utility function to make some predictions about the slope of the consumption function. Agents with a low probability of survival will consume more in the first period than in the second (positive slope of the consumption stream). In contrast, those with a high probability of survival will consume less in the first period than in the second (negative slope). Further, proposition D1 deals with the sign that the effect of the interest rate on consumption is undetermined. When the income of the second period is zero, the sign is the same as the difference between the coefficient of relative intertemporal substitution resistance and one.
    • Proposition 2 in [123] proves that an increase in n decreases p. The importance of Proposition 2 is that the authors can use their theory to fit another one of our three empirical regularities – namely, smaller campaigns, i.e., those with lower n, should have a higher fraction of heroes. Moreover, an increase in the group size reduces the probability that at least one person will take action. It is based on numeric simulations of the derivative sign of $p^{*}$.
    • In [115], as long as the first and second-order conditions of optimality for individual choices both hold at the equilibrium, it is also possible to show that equilibrium effort is quite intuitively lower when more insurance is available. Result 4 proves that the individually optimal equilibrium effort is negatively related to equilibrium insurance volume based on a partial derivative sign analysis.
    • Proposition 2 in [1041] proves three results on the upward monotonicity of WTP with respect to its different parameters $\lambda,p$, and $w$. A comparative analysis based on the derivative sign-based proof is held.
On top of that, the study of monotonicity properties is thriving in Analysis, as well as that of Locally Monotone operators.

Science Education

    • The velocity sign is introduced in [691] as a helpful educational tool.
    • Interpreting the derivative sign and the monotonicity in [54] is crucial in plotting the function.
    • [248] recommends dedicating many questions to the relation between the derivative sign and the function's monotonicity as visible in its graph.
    • In [411], while the vast majority of the students also determined the trend (velocity sign), some students had difficulties with functions and could not draw a tangent.
    • In [412], the student seemed to consider the derivative as an object with some separate properties, such as sign and magnitude.
    • In [413], although Susanna's intuition as to the monotonicity classification is "Positive when the line is ascending and negative when it is descending," she expressed it as the "sign of the slope of the tangent, pencil as a tangent," leaping at thought relative to her intuition.
    • [217] discusses the role of the derivative sign in Thermodynamics education.
    • [369] suggests that students think of functions' monotonicity as the function's derivative sign. They think about concavity as the second derivative's sign.
    • The derivative sign is mentioned in [735] as one of the first building blocks towards internalizing the concept of the derivative.
    • In [762], many learners identify slope with the angle between the straight line and the x-axis, or they evaluate the sign of the slope according to the quadrant in which the line is drawn. The same difficulty known in other studies as slope/height confusion is likely to be dominant in Physics as it is in the context of Mathematics.
    • [218] discusses the role of the derivative sign in Physics education.
    • As claimed in [736], studies have identified two students' misconceptions about the graphical representations of the derivative. Assumptions are that the graphs of a function and its derivative resemble each other in terms of the trends. The derivative of an increasing (decreasing) function is always positive (negative), excluding the option that the derivative is zeroed.
    • [737] uses the monotonicity in an interval and the derivative sign to ease the transition from the pointwise derivative to the derivative function. That is because switching from a single value of the derivative at a point makes it easier to think about a single value (its sign) in the interval.
    • In [239], students are shown the derivative of the original function, which they note is also a rational function. The roots of the numerator of the derivative are plotted as $M_{1}$ and $M_{2}$. These are locations at which the derivative is zero. A graph of the sign function of the derivative is also revealed. It is shown in Figure 8 there. The university student tutors encourage students to interpret the location of $M_{1}$ and $M_{2}$, explicitly asking how their location will impact the shape of the graph. The $sgn$ graph of the derivative (labeled as $h\left(x\right)$ in Figure 8) helps students answer such questions. For instance, the sign of the derivative to the left of $M_{1}$ is negative; to the right, positive. It suggests that the function has a relative minimum (i.e., a "turning point") at $M_{1}$. A similar observation suggests a relative maximum at $M_{2}$. Students use this information to revise their sketch yet again, as shown in Figure 9.
    • [544] mentions that the function's first derivative sign and monotonicity are traditionally addressed after the derivative, and its zeros, are found. It is a separate thought step.
    • When interpreting the slopes in [897], the interpretation of the units of slope (subsection 3.1 there) is brought separately from the interpretation of its sign (subsection 3.2). However, they are both inferred from the derivative.
    • [626] mentions that many students made an effort to decide the sign of a directional derivative without representing the direction vector in three-dimensional space. Another student's notion of partial derivative was constrained as she could not do actions to form different quotients when considering a tabular representation. Nevertheless, the only things she was able to do were the actions associated with determining the sign of a partial derivative given the surface graph. Emmie was able to eventually determine the sign of the directional derivative on problem three there. To do this, she coordinated with the function of two variables to determine the base point, the schema of vectors to represent the vector direction, and the derivative of a function of one variable to determine the sign of the derivative. Ramón got confused when asked about the partial derivative signs. The interviewer tried to help him and gave a series of hints that seemed not to work.
    • [127] illustrates that most students can correctly identify the direction of motion in a linear kinematics graph. However, some students appear to struggle with the reference point implicit in distance-time graphs. Further, the authors found that a qualitative understanding of kinematics graphs is necessary but insufficient for students in algebra-based courses to determine instantaneous speed correctly. For students in calculus-based classes, it is neither necessary (though highly desirable) nor sufficient. It implies that both qualitative and quantitative aspects of linear kinematics graphs should be taught.
    • On set $S_{3}$ in [475], the main observed difficulty was that students sometimes identified the sign of the slope with the sign of the $y$ coordinate. It may also be regarded as a special case or a consequence of slope-height confusion. The following student's explanation illustrates this difficulty: "The GDP growth rate is negative between 2006 and 2010, because GDP is negative in that period".
    • [132] claims that according to ASOS, graphing the sign of the derivative is the first recommended action in the process of sketching the function's derivative.
    • The decomposition of the logic relationship of double implication between the positive sign of the first derivative in an interval and the strict growth of the function in the said interval allowed to generate the variables $V_{11}$ and $V_{12}$ in [354].
    • The meaning of sign of rate of change is one of the main difficulties the students are facing, according to [854]. Studies have documented undergraduate students' difficulties with negative rates of change in various contexts, including kinematics (the meaning of negative velocity and negative acceleration), light intensity over distance from a point source, and discharge of a capacitor in a simple circuit. For example, when determining whether something is slowing down or speeding up, students may base their responses on the sign associated with the slope of the position versus the time graph rather than the change in magnitude of the slope. They struggle to attend to the magnitude or absolute value and the sign of the rate of change simultaneously and find it especially confusing when rates are negative but increasing in magnitude. When solving equations or interpreting graphs, students commonly confuse the slope sign with the sign of the $y$-coordinate or carelessly drop the negative sign. These findings have implications for curricular treatment of the negative sign associated with the consumption of reactants.
    • The slope sign is applied to distinguish between validation results, see table 1 in [177]. The items with the highest average scores are "compare given a graph" questions, three out of four have a positive slope, and three are kinematics questions. These observations highlight the important effect of the slope sign on the average accuracy and the difficulty students have with negative slopes in kinematics. A large factor of influence in these results is the inclusion of the possible minus sign for the one-dimensional velocity as a criterion for a correct answer. The results show that most students do not include the minus sign in kinematics, i.e., they consider the magnitude and omit the direction. This pattern is not present in the mathematics questions, so students are far more likely to include the minus sign when isomorphic equations and graphs are used. By far, the most preferred method in kinematics is calculating the ratio of differences (mainly in questions with a graph). The method is not always applied correctly, though. After calculating the ratio of differences, students often omit the minus sign (when present) from the result. From students’ explanations it is clear that this is triggered by the use of the formula $v=\frac{\Delta x}{\Delta t}$ in kinematics and $a=\frac{y_{2}-y_{1}}{x_{2}-x_{1}}$ in mathematics. Although this is essentially the same formula, there are a few differences in students' use. In mathematics, the formula is usually used correctly. In physics students usually write down the correct formula but often calculate $v=\left|\frac{\Delta x}{\Delta t}\right|$. illustration of an algebraic interval or point confusion is given by the answer to $K_{10}$ in Fig. 10 there. Interestingly, in the comparable question $M_{12}$ - in which only the sign of the slope or velocity is different—the student applies the (assumed) expert-like strategy $S_{1}$ in which the slope is identified through its location in the equation. In questions with a negative slope, and mainly in kinematics questions, students sometimes made statements related to the motion of the cyclist, such as: "the cyclist is returning" or "is riding backward" or "is slowing down." The first two statements indicate that these students include a sense of direction in their interpretation, but some have difficulty understanding and/or expressing moving with opposite the direction of the position axis. Even a respondent repeatedly wrote "riding backward or back," thus illustrating doubts about the correct interpretation. The “slowing down” statement illustrates the difficulty students have with interpreting $x\left(t\right)$ graphs with constant velocity by confusing them with $v\left(t\right)$ or $v\left(x\right)$ graphs. The results show that the sign of the slope in mathematics is no problem for most students, but when confronted with a negative sign for the velocity in kinematics, they frequently omit the minus sign. Moreover, the sign issue of velocity in kinematics raised a particular issue due to linguistic difficulties. For example, in dutch and Hebrew, there's no distinction between the words speed and velocity.
    • One of the critical steps used to determine the sense of functions' variation is calculating the sign of the derivative, according to [151]. It is in this step where variations are observed, according to at least two procedures. A solution made by algebraic methods using inequalities and the "probative number" approach: choosing one smaller value and one greater value than the root (probative value) is chosen for each stationary point. These values are substituted in the analytical expression of the derivative, and the signs of these values are observed.
    • In [681], sketches that represent incorrect values but with the correct sign (negative or positive) suggest that students connect between the increasing (decreasing) domains of the function and the positive (negative) domain of the derivative, but might ignore concavity upward and downward of the function domain. Sketches that follow correct increasing and decreasing domains but contain mistakes in values suggest that students connect the concavity upward and downward of the function domain and the increasing and decreasing domains of the derivative.
    • [511] claims that students sometimes understand the derivative intuitively as the "instantaneous change" of the function or "the change with respect to $x$." Put differently, the changing trend assimilates in the rate of change, and the derivative is presumed to capture the function's momentary change as a whole. Then, the derivative sign tests contradict this intuition.
    • Item 1M in [164] contained an algebraic expression for the first derivative of a function. The students had to relate the coefficients in this expression to the tangent's slope sign. In the parallel physics item ($1P$), an algebraic expression for the time derivative of position was given, and the students were asked to determine when the object's velocity was negative. The students performed much better on item $1P$ than on item $1M$. For item $1M$, the most common incorrect answer was distractor $D$, consisting of using the wrong coefficient to determine the slope sign. Items $4M$ and $4P$ concerned the relationship between the first derivative and the function's maxima. The two similar items were formulated a little differently. In item $4M$ (context of mathematics), the students were given information about the sign of a function's derivative, and they had to decide where the function had its maximum value within the given interval. In item $4M$ (context of physics), information was given about the sign of an object's acceleration and the object's velocity at a point. The students were required to choose the correct option describing the object's velocity at another point. A similar percentage of students answered these two items correctly in the two contexts, but the $\Phi$ coefficient was low, suggesting that the two performances are weakly correlated. In fact, by checking the students' answers more in detail, it turns out that the number of students who answered only one item (either $M$ or $P$) correctly is comparable to the number of students who answered both items correctly or both items incorrectly.
    • In [463], students established reversible reasoning if they recognized the relationship between the sign of the first derivative with the increase/decrease of the function.
    • Most of the students' answers to the first question about the function's monotonicity in [469] were based on the first derivative's sign. However, many answers had to do with "the difference between the $y$ values" and "looking at the graph." That's even though they were not taught to think about it that way. In turn, when students were asked to code this during the lab, many people struggled to come up with a way to represent their understanding visually.
    • In the immediate post-test $Q_{1}$ of [459], a common strategy was to compare the sign of the slope (which is positive except at the origin where it is zero) with the slopes indicated by the direction fields.

Reasons Why Trendland Is Trending

There are various reasons to exploit the trend rather than the complete rate information that the derivative embodies. In continuous domains, a prominent use case of is papers leveraging trends to classify a function’s monotony or curvature to prove a theorem ([91, 109, 518, 102, 359, 262, 347]). Researchers are often interested in a mere portion of the available data for a qualitative analysis of their findings. This approach is prevalent in Qualitative Trend Analysis ([257, 256, 635, 634, 964, 962, 932, 963, 931]), Qualitative Reasoning ([175, 934, 169, 475, 463]), and Static Analyses ([569, 167, 169, 501, 425, 930, 933, 213, 927, 895]…). Trends are also a natural tool for separating into cases and classifying different results ([270, 257, 431, 413, 50, 822, 673, 220, 289, 290]), including in analytical formulas ([665, 288, 824, 197, 1020, 596, 821, 215, 472, 193]…). In discrete domains, the derivative sign helps tackle several issues. Some examples follow:
    • The vanishing and exploding gradients issues, as in [7] and [793], respectively.
    • Noisy data, leading to slow convergence, as in the RProp algorithm ([802]).
    • Fluctuations around the minima point, as in [975].
    • To spare energy and computing resources, as in [455]
    • Linearizing the cost function and solving for the perturbation that maximizes the cost subject to an $\ell_{\infty}$ constraint, as in [392]. This method uses just the sign of the gradient. Since its discovery, the superiority of signed gradients to raw gradients for producing adversarial examples has puzzled the robustness community. Still, these strong fluctuations in the gradient signal possibly help the attack escape suboptimal solutions with a low gradient.
    • Generally improving the training process’s stability and ease of convergence, as in [588].
    • To reduce overfitting during the training process by using trend-based features, as in [998].
    • In Object Detection, to achieve invariance for the grey shade. For example, suppose the objects are uniform (such as vehicles). In that case, it is better to discretize the gradient, as in [52], where the original HOG doesn’t generally work well with the derivative sign, but it does in the particular case of vehicles. [706] illustrates a similar example.
    • When it is impossible to calculate the gradient precisely, we reluctantly settle with its sign. For example, in equation 1 at [290].
    • When there is a diversification in the behavior of specific entities, and we require a feature that would capture them all reasonably, as in [847].
    • Clipping the gradient forces the solutions in a specific domain, as in [664].
    • Improving the runtime performance compared to the complete derivative calculation. For example, if we calculate the quotient between two numerical derivatives, settling with their signs will spare the division as in eq. 2 in [454].
Note that engineers often apply the discrete derivative sign as the sign of the function’s change from a particular point on the grid to the following one, as in the Scipy implementation of peak detection ([852]).

A Survey of Mathematical Discussions on Trendland

Several Mathematical surveys analyze convergence properties of sign-based optimization techniques in Machine Learning.

In [235], The authors introduced the normalized and signed gradient descent flows associated with a differentiable function. They characterize their convergence properties via nonsmooth stability analysis. They also identify general conditions under which these flows attain the set of critical points of the function in a finite time. To do this, they extend results on the stability and convergence properties of general nonsmooth dynamical systems via locally Lipschitz and regular Lyapunov functions. In appendix C of [512], the authors analyze the convergence characteristic of signed gradient descent (RProp). [112] further analyzes the convergence rate of sign stochastic gradient descent (signSGD). [70] suggests that we can expect the sign direction (as applied in Adam) to be beneficial for noisy, ill-conditioned problems with diagonally dominant Hessians. [671] provides two convergence results for local optimization, one for nominal systems without uncertainty and one for systems with uncertainties. Sign gradient descent algorithms, including the dichotomy algorithm DICHO, are applied to several examples to show their effectiveness in terms of speed of convergence. The sign gradient descent algorithms can allow converging in practice towards other minima than the closest minimum of the initial condition making these algorithms suitable for global optimization as the proposed metaheuristic method. [71] mentions that sign-based optimization methods have become popular in machine learning due to their favorable communication cost in distributed optimization and their surprisingly good performance in neural network training. The authors find sign-based methods preferable over gradient descent if the Hessian is to some degree concentrated on its diagonal and its maximal eigenvalue is much larger than the average eigenvalue. Both properties are common in deep networks. [594] investigates faster convergence for a variant of sign-based gradient descent, called scaled signGD. In three cases: the objective function is firmly convex, the objective function is non-convex but satisfies the Polyak-Łojasiewicz (PL) inequality, and the gradient is stochastic, called scaled signSGD. The proof Outline of the Main Results for Adam in [1048] is based on the fact that Adam behaves similarly to sign gradient descent when using a sufficiently small step size or the moving average parameters $\beta_{1},\beta_{2}$ are nearly zero. It motivated the author to study the optimization behavior of signGD and then extend it to Adam using their similarities. [825] analyzes sign-based methods for non-convex optimization in three key settings: standard single node, parallel with shared data, and distributed with partitioned data. Single machine cases generalize the previous analysis of signSGD, relying on intuitive bounds on success probabilities and allowing even biased estimators. Furthermore, they extend the analysis to parallel settings within a parameter server framework, where exponentially fast noise reduction is guaranteed for the number of nodes, maintaining 1-bit compression in both directions and using small mini-batch sizes. Next, they identify a fundamental issue with signSGD to converge in a distributed environment. To resolve this issue, they propose a new sign-based method, Stochastic Sign Descent with Momentum (SSDM), which converges under standard bounded variance assumption with the optimal asymptotic rate.

In Adversarial Learning, [323] studies the impact of optimization methods such as sign gradient descent and proximal methods on adversarial robustness.

Trending Workarounds for Trends Calculations

To evaluate local trends, scientists usually calculate the derivative sign. Examples include equations 6,7,8 in [642] and the code in the appendix of [30]. They first calculate the derivative, then deduce its sign.

However, increasingly researchers apply simple workarounds to calculate the derivative sign or its approximation without going through the derivative. In technological applications, it happens to save computational time (in case there are runtime constraints). In theoretical applications, scenarios where the derivative isn’t computable or its sign doesn’t reflect the trend are abundant. Moreover, in practice, Modern Physics increasingly studies nowhere differentiable functions, particularly when describing phenomena such as Quantum Fluctuations. In theory, the Baire category theorem implies that almost all the continuous functions are nowhere differentiable. It means that one can calculate the local rates of a “negligible” set of functions. But local trends may be well defined even if rates aren’t, and the workarounds we discuss below capture them.

Workarounds In Discrete Domains

In discrete domains, researchers and engineers often spare the division operator upon calculating the derivative sign. For example:
    • [850] omits the division by $T_{s}$ in Eq. 3, mentioning that the value is not essential but the sign.
    • [956] explicitly mentions that since only the sign and not the value of the derivative of the loss function is used in RProp. The authors deduce that it’s possible to derive formulae to determine the sign of the derivatives, which require much less computational power than those for calculating their value.
    • [402] introduces an $\epsilon-\delta$ definition of a “trend operator,” referred to as the maximum definition.
    • In [206], the authors propose directly estimating the gradient sign at any direction instead of the gradient itself, which enjoys the benefit of a single query. Using this single query oracle for retrieving sign of directional derivative, they develop a novel query-efficient Sign-OPT approach for a hard-label black-box attack.
    • In the section about the physics of solar cells of [269], the authors calculate the directional derivative sign while sparing the division operator.
    • In Eq. 3 of [237], the sign of the discrete derivative spares the division by $T_{P\&O}$.
    • If the conditions of Proposition 4 in [189] are satisfied, the experimenter cannot rely upon the sign of the treatment-control difference to distinguish between the two efficacy states. In this situation, the experimenter would need to rely upon magnitudes of the treatment-control difference to determine the state. However, interpreting treatment-control magnitudes is more difficult since magnitudes depend upon unobservables. Indeed, in many cases, the sign of the difference suffices to infer the state.
    • [592] relies directly on the sign of the difference of $B$ and $\varphi_{\text{prec}}$, without going through their derivatives.
    • [204] calculates the sign of the discrete numeric derivative in Eq. 3.2 based on Matlab’s find peaks method, while sparing the division.
    • Algorithm 1 in [454] calculates the sign of the numerator of the discrete derivative to deduce the local trend.
    • In an efficient implementation of (5) in [194]. To obtain $\Delta y_{S_{n}}/y_{S_{n}’}$ there, a divider is needed. However, the realization of the divider is very complex, and there is a situation where the denominator $y_{S_{n}’}$ equals zero. To avoid these disadvantages, the authors use the sign but not the value of $y_{S_{n}’}$, as shown in (6) there.
Using other numerical tricks to calculate the trend without going through the derivative’s calculation to save energy is also common. For example, [984] calculates only the most significant bit of the derivative. This method allows to bound the error of calculating its sign.

Workarounds In Continuous Domains

It is prevalent to spare the evaluation of the denominator when calculating the sign of the derivative of a quotient. Since the quotient rule squares the denominator, its sign does not affect that of the quotient. Examples are abundant: At the derivative of Eq. 3.82 in [1002]; At the analysis of the sigmoid fitness function case in [361], the sign of the first derivative of the gain function depends only on the sign of its numerator; In [874], when calculating the derivative of the quotient r_{45}; At the analysis following Eq. 38 in [725]; At the analysis of Eq. 17 in [703]; At the proof of theorem 6.1 in [957]; At calculating the sign of equation 32 in [857]; At the proof of Lemma 3.1 in [130]; In [191] (at Eq. 14, 15); In [873], at the analysis following Eq. 4; At the proof of claim 5 in [95]; At the analysis following Eq. 13 in [885]; And at the study following Eq. 6 in [666].

Furthermore, recently researchers have often defined the derivative sign as an operator or parameter of its own. Either to apply it recursively, as in Eq. 5, 6 in [613], or for abbreviation, for example, defining the parameter $\gamma$ as the derivative sign for abbreviation at Eq. 3 of [447]; defining the parameter $s\equiv sgn\left(y’\right)$ in [421]; and defining the parameter $\epsilon_{i}$ that measures the velocity sign in [421].

Additional workarounds apply in scenarios where the one-sided derivatives don’t capture trends correctly. It happens in one of the following scenarios:

    1. The derivative is zeroed, although the function is not constant. It happens at extrema points, and the latter at discontinuities and cusps. As a workaround, some researchers define the trend there as the limit of the derivative sign. For example, [614] summarizes the possible asymptotic structures of gMcVittie spacetime based on the sign of the one-sided derivative of $\xi$; At Lemma 1 in [857]; And at definition 2 in [471].
    2. The function incurs a cusp, where it is continuous but non-differentiable. For example, Quantum Physicists are interested in functions’ trend in Kato’s cusp, as in [676]. [48] further applied it in Cosmology.
    3. The function is discontinuous. It is prevalent in phenomena such as Sorption and Phase Transitions. For example, in Cosmology, see figure 2 in [557]. Further, [850] struggles to analyze the monotonicity of the heat capacity at a singularity. See Figure 12 there.
    4. The function is nowhere differentiable. Physics is abundant with phenomena described by everywhere continuous and nowhere differentiable functions. A prominent example is fluctuations, random invisible movements of objects in their seemingly steady-state. These are studied in the fields of Thermodynamics and Quantum Mechanics, to mention a few. It also takes place in Electrical Engineering, specifically in a phenomenon called Chattering ([581]). Another prominent example is the Brownian motion, whose statistical model – Wiener Process – resembles fluctuations. Researchers devised the following methodologies to describe the trends of such phenomena. The theory of Detrended Fluctuation Analysis ([742]) helps estimate the trend across an interval. To describe pointwise trends, scientists devised the following qualitative description of Wienner processes:
      • For every $\epsilon>0$, the function w takes both (strictly) positive and (strictly) negative values on $\left(0,\epsilon\right)$.
      • The function $w$ is continuous everywhere but differentiable nowhere.
      • Points of local maximum of the function w are a dense countable set.
      • The function $w$ has no points of local increase, that is, no $t>0$ satisfies the following for some $\epsilon$ in $\left(0,t\right)$: first, $w\left(s\right)\leq w\left(t\right)$ for all $s$ in $\left(t-\epsilon,t\right)$, and, second, $w\left(s\right)\geq w\left(t\right)$ for all $s$ in $\left(t,t+\epsilon\right)$. (Local increase is a weaker condition than $w$ is increasing on $\left(t-\epsilon,t+\epsilon\right))$. The same holds for local decrease.

The Detachment Operator as a Next Natural Step​

Recall that the “Detachment” operator is defined in [864] as follows. Definition 1. Let $f:\mathbb{R}\longrightarrow\mathbb{R}$ be a real function. Then its one-sided detachments are defined as follows: $$\begin{array}{ccc} & f_{\pm}^{;}:\;\mathbb{R}\rightarrow\left\{ -1,0,+1\right\} \\ & f_{\pm}^{;}\left(x\right)\equiv\pm\underset{{\scriptscriptstyle h\rightarrow0^{\pm}}}{\lim}sgn\left[f\left(x+h\right)-f\left(x\right)\right]. \end{array}$$ It is a concise formulation of the workarounds we discussed. It spares the division operator in both continuous and discrete domains. Additionally, it captures trends where the derivative doesn’t, wheen it is zeroed or undefined, including, often, at discontinuities. We can further apply it reformulate the four conditions in the bullets of the Wienner process above in terms of the detachment operator with a simple sentence: “The function $\boldsymbol{w}$ is continuous everywhere but detachable only at its dense countable local optima”. This description is more concise and elegant than the former. It is also more positive: it states a property (detachability) at a dense subset (local optima). That is, instead of the absence of differentiability everywhere.

Summary

We explored examples from Trendland, an emerging set of applications across the scientific literature that leverage local trends. Let us cherry-pick prominent examples.

Artificial Intelligence researchers find it lucrative to apply “sign” methods for efficient backpropagation, depending on the geometric setting. They enhance the “signed gradient descent” algorithm (RProp), thus forming another branch of optimization techniques on top of the rate-based methods built on gradient descent. In Image Processing and Computer Vision, various applications such as edge detection and deblurring apply images’ derivatives signs.

Exploiting the trend is also prevalent in other branches of engineering. For example, in Electrical Engineering, where Fault Analysis often applies the direction of the signal (where its accurate rate is redundant). In Systems Engineering, novel methods for Maximum power point tracking (MPPT) capture the derivative sign of the voltage. In Mechanical Engineering, Compensation formulas often incorporate friction information and specifically consider the direction of movement.

Additionally, natural scientists often apply the derivative sign in qualitative analyses of natural phenomena and classify scenarios based on functions’ trends. Biologists learn about the interactions between species with the sign of their “Community Matrix.” Chemical Engineers apply the emerging field of Qualitative Trend Analysis to classify processes’ trends according to their derivatives’ signs across an interval. Physicists use the Banerjee criterion, based solely on the Arott plot’s derivative sign, to find the order of the phase transition.

On top of them, mathematicians investigate functions’ trends extensively, for example, in the theory of Locally Monotone operators. Statisticians apply the regression coefficient’s slope sign to deduce the direction of the relationship between the variables and use the Mann-Kendall trend test to assess processes’ trends.

Furthermore, social scientists use functions’ partial derivatives signs extensively for comparative static analyses.

Finally, several Science Education researchers suggested that students struggle with functions’ trends when introduced as the derivative sign. Some suggest that the derivative sign is a confusing, non-intuitive notion. They point out a verbal difficulty due to the two confusing concepts of velocity and speed. Some suggested that it would be helpful to introduce a dedicated tool that captures the trend independently of the rate.

In addition to a broad literature survey of trends applications, we further surveyed other trends calculations approaches (on top of the derivative sign). These are helpful in scenarios where the rate information the derivative captures is superfluous. They can also capture trends if the derivative is undefined or zeroed (at extrema points). While advanced mathematical tools such as the Dini derivative may address some of these scenarios, researchers often prefer other ad-hoc methods.

Surprisingly, it turns out that the “Detachment” operator, defined in Semi-discrete Calculus, concisely models the numerical tricks scientists have already been using, part of whom we surveyed. It further outperforms the derivative sign in modeling trends. The Detachment is more numerically stable (less susceptible to overflow and gradient explosion) and efficient (up to 20% faster in its discrete form), due to skipping the division operator. It is also computationally robust and consistent in continuous domains. Additionally, it meets the didactic requirement for a tool that separates between the rate and the trend.

Thus, we may think of the Detachment as yet another natural workaround towards simplifying trends calculations. Since Semi-discrete Calculus introduces simple results for trends calculations, one might find it helpful upon implementing Trendland‘s applications.

[1] Abdelaziz, A. A., Seto, T., Abdel-Salam, M., Ishijima, T., & Otani, Y. (2015). Influence of applied voltage waveforms on the performance of surface dielectric barrier discharge reactor for decomposition of naphthalene. Journal of Physics D: Applied Physics, 48(19), 195201.

[2] Abdusattar, H., Kong, S. B., You, W. L., Zhang, H., & Hu, Y. P. (2021). Joule-Thomson Expansion and Heat Engine of the FRW Universe. arXiv preprint arXiv:2108.09407.

[3] Abebe, R., Chan, T. H., Kleinberg, J., Liang, Z., Parkes, D., Sozio, M., & Tsourakakis, C. E. (2020). Opinion Dynamics with Varying Susceptibility to Persuasion via Non-Convex Local Search. arXiv preprint arXiv:2011.02583.

[4] Abidar, F., Morghi, M., Sinan, F., Chiban, M., Eddaoudi, H., & Zebret, M. (2016). Orthophosphate ion adsorption onto raw shrimp shells. Revue des sciences de l’eau/Journal of Water Science, 29(3), 197-211.

[5] Abiev, R. S. (2017). Analysis of local pressure gradient inversion and form of bubbles in Taylor flow in microchannels. Chemical Engineering Science, 174, 403-412.

[6] Abrahamsen, M., Erickson, J., Kostitsyna, I., Löffler, M., Miltzow, T., Urhausen, J., … & Viglietta, G. (2021). Chasing puppies: Mobile beacon routing on closed curves. arXiv preprint arXiv:2103.09811.

[7] Abuqaddom, I., Mahafzah, B. A., & Faris, H. (2021). Oriented stochastic loss descent algorithm to train very deep multi-layer neural networks without vanishing gradients. Knowledge-Based Systems, 230, 107391.

[8] Acharyya, R., & Kar, S. (2017). On Asymmetric Migration Patterns from Developing Countries (No. 4). GLO Discussion Paper.

[9] Achitouv, I., Neyrinck, M., & Paranjape, A. (2015). Testing spherical evolution for modelling void abundances. Monthly Notices of the Royal Astronomical Society, 451(4), 3964-3974.

[10] Achuthan, S., Butera, R. J., & Canavier, C. C. (2011). Synaptic and intrinsic determinants of the phase resetting curve for weak coupling. Journal of computational neuroscience, 30(2), 373-390.

[11] Adam, J., Adamczyk, L., Adams, J. R., Adkins, J. K., Agakishiev, G., Aggarwal, M. M., … & Landgraf, J. M. (2021). Nonmonotonic Energy Dependence of Net-Proton Number Fluctuations. Physical review letters, 126(9), 092301.

[12] Adam, J., Adamczyk, L., Adams, J. R., Adkins, J. K., Agakishiev, G., Aggarwal, M. M., … & STAR Collaboration. (2020). Net-proton number fluctuations and the Quantum Chromodynamics critical point. arXiv preprint arXiv:2001.02852.

[13] Adame-Arana, O., & Safran, S. A. (2021). Confined Polymers in a Poor Solvent: The Role of Bonding to the Surface. Macromolecules, 54(10), 4760-4768.

[14] Agarwal, A., Singh, R., & Vatsa, M. (2020). The Role of ‘Sign’ and ‘Direction’ of Gradient on the Performance of CNN. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops (pp. 646-647).

[15] Agarwal, R., Hristova, S., & O’Regan, D. (2018). Applications of Lyapunov functions to Caputo fractional differential equations. Mathematics, 6(11), 229.

[16] Agarwal, V., & Zhang, Y. (2016). Integration of Thermoelectric Generator and Wireless Sensor Node Simulators (No. INL/EXT-16-39944). Idaho National Lab.(INL), Idaho Falls, ID (United States).

[17] Aghamolaei, S., & Ghodsi, M. (2020). Approximating p-Mean Curve of Large Data-Sets. arXiv preprint arXiv:2005.06672.

[18] Agrawal, D. R. (2015). Inter-federation competition: sales taxation with multiple federations. Available at SSRN 2212234.

[19] Aguilar, J. A., & Kenwright, S. J. (2016). Robust NMR water signal suppression for demanding analytical applications. Analyst, 141(1), 236-242.

[20] Aguilera, M., Millidge, B., Tschantz, A., & Buckley, C. L. (2021). How particular is the physics of the Free Energy Principle?. arXiv preprint arXiv:2105.11203.

[21] Aït-Sahalia, Y., Li, C., & Li, C. X. (2021). Implied stochastic volatility models. The Review of Financial Studies, 34(1), 394-450.

[22] Aksenov, V. P., Izmailov, I. V., Poizner, B. N., & Tikhomirova, O. V. (2002). Wave and ray spatial dynamics of the light field in the generation, evolution, and annihilation of phase dislocations. Optics and Spectroscopy, 92(3), 409-418.

[23] Al Janaideh, M., & Tan, X. (2019, July). Adaptive estimation of threshold parameters for a Prandtl-Ishlinskii hysteresis operator. In 2019 American Control Conference (ACC) (pp. 3770-3775). IEEE.

[24] Al-Muzaiqer, M. A., Ivanova, N. A., Fliagin, V. M., & Lebedev-Stepanov, P. V. (2021). Transport and assembling microparticles via Marangoni flows in heating and cooling modes. Colloids and Surfaces A: Physicochemical and Engineering Aspects, 621, 126550.

[25] Alaci, S., Bujoreanu, C., Petrea, N. D., Ciornei, F. C., & Irimescu, L. (2020). Proposed parameter for the characterization of friction in cylindrical gears teeth contact. In IOP Conference Series: Materials Science and Engineering (Vol. 724, No. 1, p. 012008). IOP Publishing.

[26] Albuquerque, R., Cabral, L., & Guedes, J. (2019). Incentive pay and systemic risk. The Review of Financial Studies, 32(11), 4304-4342.

[27] Alekseyev, M. O., & Faris, S. R. A. (2014). Automated control of ore-pebble mill charge by the signal of active power of magnetic separator electric motor. Науковий вісник Національного гірничого університету, (3), 71-76.

[28] Alencar, R. S., Cui, W., Torres-Dias, A. C., Cerqueira, T. F., Botti, S., Marques, M. A., … & San-Miguel, A. (2017). Pressure-induced radial collapse in few-wall carbon nanotubes: A combined theoretical and experimental study. Carbon, 125, 429-436.

[29] Alexiev, K. (2020). A new algorithm for compact signal encoding. Comptes rendus de l’Académie bulgare des Sciences, 73(1).

[30] Alfarra, M., Pérez, J. C., Thabet, A., Bibi, A., Torr, P. H., & Ghanem, B. (2021). Combating Adversaries with Anti-Adversaries. arXiv preprint arXiv:2103.14347.

[31] Alhossary, A. A. M., Keong, K. C., & Yuguang, M. U. (2018). Accurately Accelerating Drug Design Workflow (Doctoral dissertation, Nanyang Technological University).

[32] Alistarh, D., Grubic, D., Li, J., Tomioka, R., & Vojnovic, M. (2017). QSGD: Communication-efficient SGD via gradient quantization and encoding. Advances in Neural Information Processing Systems, 30, 1709-1720.

[33] Alizadeh-Masoodian, A., Thanopoulou, H., & Strandenes, S. P. (2017). Capacity adjustment decisions in the service industry under stochastic revenue: the case of the shipping industry.

[34] Allahham, A., Warkozek, G., & Saeed, W. (2019). An Approach for Energy Management in Fuel Cell Vehicle (Modeling and Simulation). Innovative Applied Energy (IAPE 2019).

[35] Allard, R., & Faubert, J. (2004, May). Neural Networks: Different problems require different learning rate adaptive methods. In Image Processing: Algorithms and Systems III (Vol. 5298, pp. 516-527). International Society for Optics and Photonics.

[36] Allen, J. D. (2017). Aerodynamic Identification and Modeling of Generic UCAV Configurations with Control Surface Integration. University of Colorado at Colorado Springs.

[37] Almenar Belenguer, P., & Jódar, L. (2020). The Sign of the Green Function of an n-th Order Linear Boundary Value Problem. Mathematics, 8(5), 673.

[38] Almodaresi, E., Bozorg, M., & Taghirad, H. D. (2016). Stability domains of the delay and PID coefficients for general time-delay systems. International Journal of Control, 89(4), 783-792.

[39] Aloui, M., Hamidi, F., Jerbi, H., Omri, M., Popescu, D., & Abbassi, R. (2021). A Chaotic Krill Herd Optimization Algorithm for Global Numerical Estimation of the Attraction Domain for Nonlinear Systems. Mathematics, 9(15), 1743.

[40] Alves, A. H. G. C., & de Melo, V. V. Training a Multilayer Perceptron to predict a car speed in a simulator: Comparing RPROP, PSO, BFGS, and a memetic PSO-BFGS hybrid.

[41] Amirgholy, M., & Gao, H. O. (2017). Modeling the dynamics of congestion in large urban networks using the macroscopic fundamental diagram: User equilibrium, system optimum, and pricing strategies. Transportation Research Part B: Methodological, 104, 215-237.

[42] Anagnostopoulos, G., Androulidakis, C., Koukaras, E. N., Tsoukleri, G., Polyzos, I., Parthenios, J., … & Galiotis, C. (2015). Stress transfer mechanisms at the submicron level for graphene/polymer systems. ACS applied materials & interfaces, 7(7), 4216-4223.

[43] Anastasiadis, A. D., Magoulas, G. D., & Vrahatis, M. N. (2003, September). An efficient improvement of the Rprop algorithm. In Proceedings of the First International Workshop on Artificial Neural Networks in Pattern Recognition (ANNPR-03) (pp. 197-201).

[44] Anastasiadis, A. D., Magoulas, G. D., & Vrahatis, M. N. (2005). Sign-based learning schemes for pattern classification. Pattern Recognition Letters, 26(12), 1926-1936.

[45] Andrychowicz, M., Denil, M., Gomez, S., Hoffman, M. W., Pfau, D., Schaul, T., … & De Freitas, N. (2016). Learning to learn by gradient descent by gradient descent. In Advances in neural information processing systems (pp. 3981-3989).

[46] Antar, G., Devynck, P., Laviron, C., Hennequin, P., Garbet, X., Truc, A., … & Gervais, F. (1999). Temporal separation of the density fluctuation signal measured by light scattering. Plasma physics and controlled fusion, 41(6), 733.

[47] Apri, M., Banagaay, N., & van den Berg, J. (2011). Analysis of a model for ship maneuvering. Aretz, K., Lin, M. T., & Poon, S. H. (2018). Moneyness, Volatility, and the Cross-Section of Option Returns. Available at SSRN 2872168.

[48] Argüelles, C. R., Díaz, M. I., Krut, A., & Yunis, R. (2021). On the formation and stability of fermionic dark matter haloes in a cosmological framework. Monthly Notices of the Royal Astronomical Society, 502(3), 4227-4246.

[49] Aridhi, H., Zaki, M. H., & Tahar, S. (2015). Fast statistical analysis of nonlinear analog circuits using model order reduction. Analog Integrated Circuits and Signal Processing, 85(3), 379-394.

[50] Arino, J., & McCluskey, C. C. (2010). Effect of a sharp change of the incidence function on the dynamics of a simple disease. Journal of biological dynamics, 4(5), 490-505.

[51] Arpit, D., Jastrzębski, S., Ballas, N., Krueger, D., Bengio, E., Kanwal, M. S., … & Lacoste-Julien, S. (2017, July). A closer look at memorization in deep networks. In International Conference on Machine Learning (pp. 233-242). PMLR.

[52] Arrospide, J., Salgado, L., & Camplani, M. (2013). Image-based on-road vehicle detection using cost-effective histograms of oriented gradients. Journal of Visual Communication and Image Representation, 24(7), 1182-1190.

[53] Ascione, G. (2020). On the Construction of Some Deterministic and Stochastic Non-Local SIR Models. Mathematics, 8(12), 2103.

[54] Asiala, M., Cottrill, J., Dubinsky, E., & Schwingendorf, K. E. (1997). The development of students’ graphical understanding of the derivative. The Journal of Mathematical Behavior, 16(4), 399-431.

[55] Athanasiou, A., & Oliveto, G. (2011). Modelling hybrid base isolation systems for free vibration simulations. In 8th International Conference on Urban Earthquake Engineering March (pp. 7-8).

[56] Athay, R. G., & Klimchuk, J. A. (1987). The magnetic and velocity structure adjacent to solar active regions. The Astrophysical Journal, 318, 437-444.

[57] Attali, K., & Itzhaki, N. (2019). The averaged null energy condition and the black hole interior in string theory. Nuclear Physics B, 943, 114631.

[58] Attallah, B., Serir, A., Chahir, Y., & Boudjelal, A. (2017). Histogram of gradient and binarized statistical image features of wavelet subband-based palmprint features extraction. Journal of Electronic Imaging, 26(6), 063006.

[59] Augustin, P. (2018). The term structure of CDS spreads and sovereign credit risk. Journal of Monetary Economics, 96, 53-76.

[60] Austin, M. A., & Sebastianelli Jr, R. R. (2007). Phase analysis of actuator response for sub‐optimal bang–bang and velocity cancellation control of base‐isolated structures. Structural Control and Health Monitoring: The Official Journal of the International Association for Structural Control and Monitoring and of the European Association for the Control of Structures, 14(7), 1034-1061.

[61] Awalgaonkar, N., Bilionis, I., Liu, X., Karava, P., & Tzempelikos, A. (2019). Learning personalized thermal preferences via Bayesian active learning with unimodality constraints. arXiv preprint arXiv:1903.09094.

[62] Baba, A. O., Liu, G., & Chen, X. (2020). Classification and evaluation review of maximum power point tracking methods. Sustainable Futures, 2, 100020.

[63] Baccini, A., Besse, P., Déjean, S., & Martin, P. (2006). Analysis of time series gene expression data. In 4th Workshop on Statistical Method for Post-genomic Data (p. Inconnu).

[64] Bahaj, S., & Malherbe, F. (2020). The forced safety effect: How higher capital requirements can increase bank lending. The Journal of Finance, 75(6), 3013-3053.

[65] Baidakov, V. G., Kaverin, A. M., Khotienkova, M. N., & Andbaeva, V. N. (2012). Surface tension of an ethane–nitrogen solution. 1: Experiment and thermodynamic analysis of the results. Fluid phase equilibria, 328, 13-20.

[66] Baireuther, P., Hutasoit, J. A., Tworzydło, J., & Beenakker, C. W. J. (2016). Scattering theory of the chiral magnetic effect in a Weyl semimetal: interplay of bulk Weyl cones and surface Fermi arcs. New Journal of Physics, 18(4), 045009.

[67] Baker, J. B. (2016). Exclusionary conduct of dominant firms, R&D competition, and innovation. Review of Industrial Organization, 48(3), 269-287.

[68] Balasubramaniyan, R., Hüllermeier, E., Weskamp, N., & Kämper, J. (2005). Clustering of gene expression data using a local shape-based similarity measure. Bioinformatics, 21(7), 1069-1077.

[69] Baldazzi, V., Ropers, D., Geiselmann, J., Kahn, D., & de Jong, H. (2012). Importance of metabolic coupling for the dynamics of gene expression following a diauxic shift in Escherichia coli. Journal of theoretical biology, 295, 100-115. Balle, D. Anonymity in Multiple Stage Competitions.

[70] Balles, L., & Hennig, P. (2018, July). Dissecting adam: The sign, magnitude and variance of stochastic gradients. In International Conference on Machine Learning (pp. 404-413). PMLR.

[71] Balles, L., Pedregosa, F., & Roux, N. L. (2020). The Geometry of Sign Gradient Descent. arXiv preprint arXiv:2002.08056.

[72] Banerjee, P., Bhunia, A. K., Bhattacharyya, A., Roy, P. P., & Murala, S. (2018). Local neighborhood intensity pattern–a new texture feature descriptor for image retrieval. Expert Systems with Applications, 113, 100-115.

[73] Bang, H., Tahk, M. J., & Choi, H. D. (2003). Large angle attitude control of spacecraft with actuator saturation. Control engineering practice, 11(9), 989-997.

[74] Banister, B. C., & Zeidler, J. R. (2003). A simple gradient sign algorithm for transmit antenna weight adaptation with feedback. IEEE Transactions on Signal Processing, 51(5), 1156-1171.

[75] Baranov, V. B., Izmodenov, V. V., & Malama, Y. G. (1998). On the distribution function of H atoms in the problem of the solar wind interaction with the local interstellar medium. Journal of Geophysical Research: Space Physics, 103(A5), 9575-9585.

[76] Bardgett, C., Gourier, E., & Leippold, M. (2019). Inferring volatility dynamics and risk premia from the S&P 500 and VIX markets. Journal of Financial Economics, 131(3), 593-618.

[77] Barnett, D. M., Tajima, T., Nishihara, K., Ueshima, Y., & Furukawa, H. (1996). Lyapunov exponent of a many body system and its transport coefficients. Physical review letters, 76(11), 1812.

[78] Barsukov, D. P., Goglichidze, O. A., & Tsygan, A. I. (2014, March). The influence of small scale magnetic field on the polar cap X-ray luminosity of old radio pulsars. In Journal of Physics: Conference Series (Vol. 496, No. 1, p. 012012). IOP Publishing.

[79] Bartolini, G., Ferrara, A., & Usai, E. (1998). Chattering avoidance by second-order sliding mode control. IEEE Transactions on automatic control, 43(2), 241-246.

[80] Barz, T., & Emhofer, J. (2021). Paraffins as phase change material in a compact plate-fin heat exchanger-Part I: Experimental analysis and modeling of complete phase transitions. Journal of Energy Storage, 33, 102128.

[81] Basso, L. J., Navarro, M., & Silva, H. E. (2017). The effects of public transportation on urban form.

[82] Basu, D. (2018). Does the Steindl-Dutt investment function rule out profit-led expansion? (No. 2018-06). Working Paper.

[83] Batabyal, A. A., & Yoo, S. J. (2018). Schumpeterian creative class competition, innovation policy, and regional economic growth. International review of economics & finance, 55, 86-97.

[84] Batignani, G., Fumero, G., Mukamel, S., & Scopigno, T. (2015). Energy flow between spectral components in 2D broadband stimulated Raman spectroscopy. Physical Chemistry Chemical Physics, 17(16), 10454-10461.

[85] Batt, G., Bergamini, D., De Jong, H., Garavel, H., & Mateescu, R. (2004, April). Model checking genetic regulatory networks using GNA and CADP. In International SPIN Workshop on Model Checking of Software (pp. 158-163). Springer, Berlin, Heidelberg.

[86] Batt, G., De Jong, H., Page, M., & Geiselmann, J. (2008). Symbolic reachability analysis of genetic regulatory networks using discrete abstractions. Automatica, 44(4), 982-989.

[87] Baudisch, B. (2018). Time resolved broadband spectroscopy from UV to NIR (Doctoral dissertation, lmu).

[88] Bayramoglu, B., Finus, M., & Jacques, J. F. (2018). Climate agreements in a mitigation-adaptation game. Journal of Public Economics, 165, 101-113.

[89] Baz, J., & Hansen, N. (2018). Thermodynamic Characterization of the Dimerization of an Anionic Perylene Bisimide Dye Using Molecular Simulation. The Journal of Physical Chemistry C, 123(13), 8027-8036.

[90] Beaud, M., Blayac, T., & Stéphan, M. (2016). The impact of travel time variability and travelers’ risk attitudes on the values of time and reliability. Transportation Research Part B: Methodological, 93, 207-224.

[91] Bebbington, M., Lai, C. D., Wellington, M., & Zitikis, R. (2012). The discrete additive Weibull distribution: A bathtub-shaped hazard for discontinuous failure data. Reliability Engineering & System Safety, 106, 37-44.

[92] Behnke, S. (2003). Hierarchical neural networks for image interpretation (Vol. 2766). Springer.

[93] Bejarano, C., Eiroa, E. F., & Simeone, C. (2007). Thin-shell wormholes associated with global cosmic strings. Physical Review D, 75(2), 027501.

[94] Bekhti, M., & Benattia, T. A. (2014). Maximum Power Point Tracking Simulations for PV Applications Using Matlab Simulink. International Journal of Engineering Practical Research (IJEPR), 3(4).

[95] Bell, M. (2018). Three essays in the economics of greenhouse gas emissions’ mitigation in the electricity sector.

[96] Bellet, J. B. (2020). Symmetry group of the equiangular cubed sphere.

[97] Bellucci, M., Miralles, L., Qureshi, M. A., & Mac Namee, B. (2019). ZeLiC and ZeChipC: Time Series Interpolation Methods for Lebesgue or Event-based Sampling. arXiv preprint arXiv:1906.03110.

[98] Belousov, A. V., Koshlich, Y. A., & Stan, V. K. (2017). Development of control system of hot water supply solar plant.

[99] Benatti, F., Floreanini, R., & Piani, M. (2003). Environment induced entanglement in Markovian dissipative dynamics. Physical Review Letters, 91(7), 070402.

[100] Benedetti, D. M., & Veras, C. A. G. (2021). Wind-Tunnel Measurement of Differential Pressure on the Surface of a Dynamically Inflatable Wing Cell. Aerospace, 8(2), 34.

[101] Benetazzo, F., Freddi, A., Monteriù, A., & Longhi, S. (2014). Respiratory rate detection algorithm based on RGB-D camera: theoretical background and experimental results. Healthcare technology letters, 1(3), 81-86.

[102] Bengui, J., & Bianchi, J. (2018). Macroprudential policy with leakages (No. w25048). National Bureau of Economic Research.

[103] Bento, F., & Cardoso, A. J. M. (2018). A comprehensive survey on fault diagnosis and fault tolerance of DC-DC converters. Chinese Journal of Electrical Engineering, 4(3), 1-12.

[104] Benz, D., & Pfeffer, P. E. A new method for damper characterization and real-time capable modeling for ride comfort. Bërdëllima, A. (2019). A Note on a Conjecture by Khabibullin. Journal of Mathematical Sciences, 243(6).

[105] Berestizshevsky, K., & Even, G. (2019, September). Sign Based Derivative Filtering for Stochastic Gradient Descent. In International Conference on Artificial Neural Networks (pp. 208-219). Springer, Cham.

[106] Beretta, E., & Solimano, F. (2003). The effect of time delay on stability in a bacteria-bacteriophage model. Scientiae Mathematicae Japonicae, 58(2), 399-406.

[107] Bergolo, M., Burdin, G., De Rosa, M., Burone, S., Giaccobasso, M., & Leites, M. (2019). Why are we inequality averse?.

[108] Bergou, E. H., Gorbunov, E., & Richtárik, P. (2020). Stochastic three points method for unconstrained smooth minimization. SIAM Journal on Optimization, 30(4), 2726-2749.

[109] Berman, E., Felter, J., Kapstein, E., & Troland, E. (2013). Predation, taxation, investment and violence: evidence from the Philippines (No. w19266). National Bureau of Economic Research.

[110] Bernardes, R., Ferreira, J. A., Grassi, M., Nhangumbe, M., & de Oliveira, P. (2019). Fighting opportunistic bacteria in drug delivery medical devices. SIAM Journal on Applied Mathematics, 79(6), 2456-2478.

[111] Bernetti, R., Titarev, V. A., & Toro, E. F. (2008). Exact solution of the Riemann problem for the shallow water equations with discontinuous bottom geometry. Journal of Computational Physics, 227(6), 3212-3243.

[112] Bernstein, J., Azizzadenesheli, K., Wang, Y. X., & Anandkumar, A. (2018). Convergence rate of sign stochastic gradient descent for non-convex functions.

[113] Bernstein, J., Wang, Y. X., Azizzadenesheli, K., & Anandkumar, A. (2018, July). signSGD: Compressed optimisation for non-convex problems. In International Conference on Machine Learning (pp. 560-569). PMLR.

[114] Berthier, F., Lullien, Q., & Legrand, B. (2021). Effective site energy and cluster expansion approaches for the study of phase diagrams. Physical Review B, 104(1), 014111.

[115] Bertola, G., & Koeniger, W. (2015). Hidden insurance in a moral‐hazard economy. The RAND Journal of Economics, 46(4), 777-790.

[116] Bespalov, A. V., & Vilkova, E. V. (2014). Time-series rate of convergence to quasi-periodic oscillations. Наносистемы: физика, химия, математика, 5(3).

[117] Bevins, H. T. J., Handley, W. J., Fialkov, A., de Lera Acedo, E., Greenhill, L. J., & Price, D. C. (2021). maxsmooth: rapid maximally smooth function fitting with applications in Global 21-cm cosmology. Monthly Notices of the Royal Astronomical Society, 502(3), 4405-4425.

[118] Bhaduri, A., Raghavendra, S., & Guttal, V. (2015). On the systemic fragility of finance‐led growth. Metroeconomica, 66(1), 158-186.

[119] Bhushan, B., & Kasai, T. (2004). A surface topography-independent friction measurement technique using torsional resonance mode in an AFM. Nanotechnology, 15(8), 923.

[120] Bietresato, M., Caligiuri, C., Renzi, M., & Mazzetto, F. (2019). Use of diesel-biodiesel-bioethanol blends in farm tractors: first results obtained with a mixed experimental-numerical approach. Energy Procedia, 158, 965-971.

[121] Bilyk, D., Glazyrin, A., Matzke, R., Park, J., & Vlasiuk, O. (2019). Optimal measures for p-frame energies on spheres. arXiv preprint arXiv:1908.00885.

[122] Bloch, F., & Demange, G. (2020). Profit-Sharing Rules and the Taxation of Multinational Internet Platforms.

[123] Blomberg, S. B., Hess, G. D., & Raviv, Y. (2008). Where Have All the Heroes Gone? A Self-Interested, Economic Theory of Heroism. Economic Theory of Heroism (May 1, 2008). Robert Day School of Economics and Finance Research Paper, (2008-1).

[124] Blum, M., & Riedmiller, M. A. (2013, April). Optimization of Gaussian process hyperparameters using Rprop. In ESANN (pp. 339-344).

[125] Boast, C. W., Mulvaney, R. L., & Baveye, P. (1988). Evaluation of nitrogen‐15 tracer techniques for direct measurement of denitrification in soil: I. Theory. Soil Science Society of America Journal, 52(5), 1317-1322.

[126] Bódai, T., Lucarini, V., Lunkeit, F., & Boschi, R. (2015). Global instability in the Ghil–Sellers model. Climate Dynamics, 44(11-12), 3361-3381.

[127] Bollen, L., De Cock, M., Zuza, K., Guisasola, J., & van Kampen, P. (2016). Generalizing a categorization of students’ interpretations of linear kinematics graphs. Physical Review Physics Education Research, 12(1), 010108.

[128] Bonczek, P. J., & Bezzo, N. (2021). Detection of Hidden Attacks on Cyber-Physical Systems from Serial Magnitude and Sign Randomness Inconsistencies. arXiv preprint arXiv:2104.15097.

[129] Bondarev, A. A. (2012). Optimal control over a continuous range of homogeneous and heterogeneous innovations with finite life-cycles.

[130] Bonettini, S., Porta, F., Ruggiero, V., & Zanni, L. (2021). Variable metric techniques for forward–backward methods in imaging. Journal of Computational and Applied Mathematics, 385, 113192.

[131] Bongiovanni, G., Buffarini, G., Clemente, P., Rinaldis, D., & Saitta, F. (2017). Dynamic characteristics of the Amphitheatrum Flavium northern wall from traffic-induced vibrations. Annals of Geophysics, 60(4), 0439.

[132] Borji, V., Font, V., Alamolhodaei, H., & Sánchez, A. (2018). Application of the Complementarities of Two Theories, APOS and OSA, for the Analysis of the University Students’ Understanding on the Graph of the Function and its Derivative. EURASIA journal of mathematics, science and technology education, 14(6), 2301-2315.

[133] Bourgeois, G., Mazouffre, S., & Sadeghi, N. (2010). Unexpected transverse velocity component of Xe+ ions near the exit plane of a Hall thruster. Physics of Plasmas, 17(11), 113502.

[134] Bouvard, M., & de Motta, A. (2018). Operating Leverage, Risk Taking and Coordination Failures. Bouvard, M., & de Motta, A. Labor Leverage, Coordination Failures, and Systematic Risk.

[135] Bovkun, L. S., Ikonnikov, A. V., Aleshkin, V. Y., Krishtopenko, S. S., Mikhailov, N. N., Dvoretskii, S. A., … & Gavrilenko, V. I. (2018). Polarization-sensitive fourier-transform spectroscopy of HgTe/CdHgTe quantum wells in the far infrared range in a magnetic field. JETP Letters, 108(5), 329-334.

[136] Brandstetter, P., & Rech, P. (2013). Sensorless control of low voltage permanent magnet synchronous motor for application in small electric car. Organ, 5, 13.

[137] Branting, L. K., & Broos, P. S. (1997). Automated acquisition of user preferences. International Journal of Human-Computer Studies, 46(1), 55-77.

[138] Braunstein, E., Van Staveren, I., & Tavani, D. (2011). Embedding care and unpaid work in macroeconomic modeling: A structuralist approach. Feminist Economics, 17(4), 5-31.

[139] Brener, E. A., & Temkin, D. E. (2011). Onsager approach to 1D solidification problem and its relation to phase field description. arXiv preprint arXiv:1112.2849.

[140] Brockwell, P. J., Brockwell, P. J., Davis, R. A., & Davis, R. A. (2016). Introduction to time series and forecasting. springer.

[141] Brown, B. P., Mendenhall, J., Geanes, A. R., & Meiler, J. (2021). General Purpose Structure-Based drug discovery neural network score functions with human-interpretable pharmacophore maps. Journal of chemical information and modeling, 61(2), 603-620.

[142] Brunskill, E., Kollar, T., & Roy, N. (2007, October). Topological mapping using spectral clustering and classification. In 2007 IEEE/RSJ International Conference on Intelligent Robots and Systems (pp. 3491-3496). IEEE.

[143] Budich, J. C., & Heyl, M. (2016). Dynamical topological order parameters far from equilibrium. Physical Review B, 93(8), 085416.

[144] Bulfone, G., Casarin, R., & Ravazzolo, F. (2021). Corporate CDS spreads from the Eurozone crisis to COVID-19 pandemic: A Bayesian Markov switching model. Rimini Centre for Economic Analysis.

[145] Bunescu, C., Vogt, J., Marghitu, O., & Blagau, A. (2019, May). Multiscale estimation of the field-aligned current density. In Annales Geophysicae (Vol. 37, No. 3, pp. 347-373). Copernicus GmbH.

[146] Bursian, D., & Faia, E. (2018). Trust in the monetary authority. Journal of Monetary Economics, 98, 66-79.

[147] Burzurí, E., Gaudenzi, R., & Van der Zant, H. S. J. (2015). Observing magnetic anisotropy in electronic transport through individual single-molecule magnets. Journal of Physics: Condensed Matter, 27(11), 113202.

[148] Bustingorry, S., Pomiro, F., Aurelio, G., & Curiale, J. (2016). Second-order magnetic critical points at finite magnetic fields: Revisiting Arrott plots. Physical Review B, 93(22), 224429.

[149] Butner, J. E., Wiltshire, T. J., & Munion, A. K. (2017). Modeling multi-agent self-organization through the lens of higher order attractor dynamics. Frontiers in psychology, 8, 380.

[150] Byrne, J. (2015). Nested motion descriptors. In Proceedings of the IEEE conference on computer vision and pattern recognition (pp. 502-510).

[151] Cabañas-Ramírez, N. O., Locia-Espinoza, E., & Morales-Carballo, A. (2019). Didactic Engineering in the Study of the Sense of Variation of Functions: Preliminary Analysis. International Electronic Journal of Mathematics Education, 15(2), em0566.

[152] Cabecinhas, D., Batista, P., Oliveira, P., & Silvestre, C. (2017). Hovercraft control with dynamic parameters identification. IEEE Transactions on Control Systems Technology, 26(3), 785-796.

[153] Cabré, J. M. D., Moré, A. E., & Salvadori, L. (2018). Does the tax administration play an unfair gamble with taxpayers? Evidence from survey data. Papeles de trabajo del Instituto de Estudios Fiscales. Serie economía, (6), 1-38.

[154] Cai, Y. (2018). Symbolic Data Analysis: Statistical Inference on Interval-valued Data Regression (Doctoral dissertation, University of Georgia).

[155] Caine, B. A., Bronzato, M., & Popelier, P. L. (2019). Experiment stands corrected: accurate prediction of the aqueous p K a values of sulfonamide drugs using equilibrium bond lengths. Chemical science, 10(25), 6368-6381.

[156] Calavia, M., Perié, J. M., Sanz, J. F., & Sallán, J. (2010, March). Comparison of MPPT strategies for solar modules. In Proc. Int. Conf. Renewable Energies Power Quality (pp. 22-25).

[157] Camara, M. S., Ducq, Y., & Dupas, R. (2014). A methodology for the evaluation of interoperability improvements in inter-enterprises collaboration based on causal performance measurement models. International Journal of Computer Integrated Manufacturing, 27(2), 103-119.

[158] Cameron, A. D., Li, D., Hobbs, G., Zhang, L., Miao, C. C., Wang, J. B., … & Zhu, M. (2020). An in-depth investigation of 11 pulsars discovered by FAST. Monthly Notices of the Royal Astronomical Society, 495(3), 3515-3530.

[159] Cammarota, C. (2011). The difference-sign runs length distribution in testing for serial independence. Journal of Applied Statistics, 38(5), 1033-1043.

[160] Campos, R. G., Islas, G. A., & Lam, R. (2006). A Theory of Dismantling a Joint Ownership: The role of the Venture Capitalist in an IPO.

[161] Capace, A., Cosentino, C., Abidi, H., Cannella, F., Amato, F., Dogramadzi, S., & Merola, A. (2021). Modelling and identification of the asymmetric hysteresis in the viscoelastic response of the fingertip under indentation: A multistate friction model with switching parameters. Mechatronics, 77, 102578.

[162] Cardle, M., Brooks, S., Bar-Joseph, Z., & Robinson, P. (2003, July). Sound-by-numbers: motion-driven sound synthesis. In Symposium on Computer Animation (pp. 349-356).

[163] Carletti, T., Fanelli, D., & Piazza, F. (2020). COVID-19: The unreasonable effectiveness of simple models. Chaos, Solitons & Fractals: X, 5, 100034.

[164] Carli, M., Lippiello, S., Pantano, O., Perona, M., & Tormen, G. (2020). Testing students ability to use derivatives, integrals, and vectors in a purely mathematical context and in a physical context. Physical Review Physics Education Research, 16(1), 010111.

[165] Carlini, E., Falcone, M., Forcadel, N., & Monneau, R. (2008). Convergence of a generalized fast-marching method for an eikonal equation with a velocity-changing sign. SIAM Journal on Numerical Analysis, 46(6), 2920-2952.

[166] Carobbi, C. F., & Cati, M. (2008). The absolute maximum of the likelihood function of the rice distribution: Existence and uniqueness. IEEE Transactions on Instrumentation and Measurement, 57(4), 682-689.

[167] Carr, P., & Wu, L. (2007). Stochastic skew in currency options. Journal of Financial Economics, 86(1), 213-247.

[168] Carrillo-Tudela, C., Graber, M., & Waelde, K. (2018). Unemployment and vacancy dynamics with imperfect financial markets. Labour Economics, 50, 128-143.

[169] Carriquiry, M., & Babcock, B. A. (2007). Reputations, market structure, and the choice of quality assurance systems in the food industry. American Journal of Agricultural Economics, 89(1), 12-23.

[170] Carvalho, L., Lima, G. T., & Serra, G. P. (2017). Debt-financed knowledge capital accumulation, capacity utilization and economic growth. University of São Paulo, Department of Economics Working Paper Series, 32.

[171] Casassus, S., & Pérez, S. (2019). Kinematic Detections of Protoplanets: A Doppler Flip in the Disk of HD 100546. The Astrophysical Journal Letters, 883(2), L41.

[172] Catapano, V. (2020). The optimal regulation of pension funds with endogenous financial literacy. Cato, S., & Ebina, T. (2014). Inequality aversion in long-term contracts.

[173] Cavorsi, M., Khajenejad, M., Niu, R., Shen, Q., & Yong, S. Z. (2020). Tractable compositions of discrete-time control barrier functions with application to lane keeping and obstacle avoidance. arXiv preprint arXiv:2004.01858.

[174] Cengiz, T. E. P. E., & Demir, M. C. (2020). Detection and Classification of Muscle Activation in EMG Data Acquired by Myo Armband. Avrupa Bilim ve Teknoloji Dergisi, 178-183.

[175] Cerbah, F. (1992). Integrating Qualitative Reasoning and Text Planning to Generate Casual Explanations. In COLING 1992 Volume 2: The 14th International Conference on Computational Linguistics.

[176] Çetin, S. K., Acet, M., & Ekicibil, A. (2017). Effect of Pr-substitution on the structural, magnetic and magnetocaloric properties of (La1-xPrx) 0.67 Pb0. 33MnO3 (0.0≤ x≤ 0.3) manganites. Journal of Alloys and Compounds, 727, 1253-1262.

[177] Ceuppens, S., Bollen, L., Deprez, J., Dehaene, W., & De Cock, M. (2019). 9th grade students’ understanding and strategies when solving x (t) problems in 1D kinematics and y (x) problems in mathematics. Physical Review Physics Education Research, 15(1), 010101.

[178] Chabab, M., Moumni, H. E., Iraoui, S., Masmar, K., & Zhizeh, S. (2018). Joule-Thomson Expansion of RN-AdS Black Holes in $ f (R) $ gravity. arXiv preprint arXiv:1804.10042.

[179] Chae, Y., Wilke, D. N., & Kafka, D. (2021). GOALS: Gradient-Only Approximations for Line Searches Towards Robust and Consistent Training of Deep Neural Networks. arXiv preprint arXiv:2105.10915.

[180] Chakravarty, A., & Sivaswamy, J. (2018). A supervised joint multi-layer segmentation framework for retinal optical coherence tomography images using conditional random field. Computer methods and programs in biomedicine, 165, 235-250.

[181] Chalhub, D. J. M. N., Sphaier, L. A., & de B. Alves, L. S. (2013). Integral transform solution of convective heat transfer problems using upwind approximations. Numerical Heat Transfer, Part B: Fundamentals, 63(2), 167-187.

[182] Chamberlain, J., & Starobinski, D. (2020). Social welfare and price of anarchy in preemptive priority queues. Operations Research Letters, 48(4), 530-533.

[183] Chan, S. H., Wang, L., Dash, S., & Maranas, C. D. (2018). Accelerating flux balance calculations in genome-scale metabolic models by localizing the application of loopless constraints. Bioinformatics, 34(24), 4248-4255.

[184] Chang, F., Chen, G. C., Lin, C. C., & Lin, W. H. (2005). Caption analysis and recognition for building video indexing systems. Multimedia systems, 10(4), 344-355.

[185] Chang, H., d’Avernas, A., & Eisfeldt, A. L. (2021). Bonds vs. Equities: Information for Investment. Equities: Information for Investment (April 15, 2021).

[186] Chatelain, J. B., & Ralf, K. (2021). Imperfect credibility versus no credibility of optimal monetary policy. Revue économique, 72(1), 43-64.

[187] Chattopadhyay, S., & Mitka, M. M. (2019). Nash equilibrium in tariffs in a multi-country trade model. Journal of Mathematical Economics, 84, 225-242.

[188] Chemla, G., & Hennessy, C. (2018). Subject rational expectations will contaminate randomized controlled medical trials. Available at SSRN 2800265.

[189] Chemla, G., & Hennessy, C. A. (2019). Controls, belief updating, and bias in medical RCTs. Journal of Economic Theory, 184, 104929.

[190] Chen, C. H., & Liu, T. K. (2008). Tighter Price Cap Regulation on Consumer Surplus and Utility. Economics Bulletin, 12(36), 1-8.

[191] Chen, C., John, R., Twycross, J., & Garibaldi, J. M. (2017). A direct approach for determining the switch points in the Karnik–Mendel algorithm. IEEE Transactions on Fuzzy Systems, 26(2), 1079-1085.

[192] Chen, H., & Schmeiser, B. W. (1992, December). Simulation of Poisson processes with trigonometric rates. In Proceedings of the 24th conference on Winter simulation (pp. 609-617).

[193] Chen, H., Duan, S., Tang, Y., & Xie, J. (2018). Global dynamics of a mechanical system with dry friction. Journal of Differential Equations, 265(11), 5490-5519.

[194] Chen, H., Yin, Y., Liu, T., Gan, L., Xiao, R., Yan, H., & Deng, H. (2020). A split-based fully digital feedforward background calibration technique for timing mismatch in TIADC. Integration, 71, 105-114.

[195] Chen, J., Lu, M., Chen, X., Chen, J., & Chen, L. (2013). A spectral gradient difference based approach for land cover change detection. ISPRS journal of photogrammetry and remote sensing, 85, 1-12.

[196] Chen, S., Luo, M., & He, F. (2018). A universal algorithm for sensorless collision detection of robot actuator faults. Advances in Mechanical Engineering, 10(1), 1687814017740710.

[197] Chen, W., Kong, K., & Tomizuka, M. (2014). Dual-stage adaptive friction compensation for precise load side position tracking of indirect drive mechanisms. IEEE Transactions on Control Systems Technology, 23(1), 164-175.

[198] Chen, W., Xiang, D., & Deng, J. (2017). Surface normals in the wild. In Proceedings of the IEEE International Conference on Computer Vision (pp. 1557-1566).

[199] Chen, X., Wang, W., & Tong, H. (2021). Studying magnetic fields of ultraluminous X-ray pulsars using different accretion torques. Journal of High Energy Astrophysics.

[200] Chen, Z., Chi, Z., Fu, H., & Feng, D. (2013). Multi-instance multi-label image classification: A neural approach. Neurocomputing, 99, 298-306.

[201] Chen, Z., Lii, N. Y., Wimböck, T., Fan, S., Liu, H., & Albu-Schäffer, A. (2014). Experimental analysis on spatial and cartesian impedance control for the dexterous DLR/HIT II hand. International Journal of Robotics & Automation, 29(1), 1-13.

[202] Chen, Z., Ngiam, J., Huang, Y., Luong, T., Kretzschmar, H., Chai, Y., & Anguelov, D. (2020). Just pick a sign: Optimizing deep multitask models with gradient sign dropout. arXiv preprint arXiv:2010.06808.

[203] Chen, Z., Yuan, X., Lu, J., Tian, Q., & Zhou, J. (2018). Deep hashing via discrepancy minimization. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (pp. 6838-6847).

[204] Cheng, J. (2018). Peak Detection to Count Gold Nanoparticles Translocations in Nanopipette. University of California, Santa Cruz.

[205] Cheng, M. (2021). On the Robustness of Neural Network: Attacks and Defenses. University of California, Los Angeles.

[206] Cheng, M., Singh, S., Chen, P., Chen, P. Y., Liu, S., & Hsieh, C. J. (2019). Sign-opt: A query-efficient hard-label adversarial attack. arXiv preprint arXiv:1909.10773.

[207] Cheng, S. (2018). Reaching a target within a gps-denied or costly area: A two-stage optimal control approach (Doctoral dissertation, University of Maryland, College Park).

[208] Cheng, Y., Juefei-Xu, F., Guo, Q., Fu, H., Xie, X., Lin, S. W., … & Liu, Y. (2020). Adversarial exposure attack on diabetic retinopathy imagery. arXiv preprint arXiv:2009.09231.

[209] Chetverikov, D., & Wilhelm, D. (2017). Nonparametric instrumental variable estimation under monotonicity. Econometrica, 85(4), 1303-1320.

[210] Chetvertukhin, A. V., Sharipova, M. I., Zhdanov, A. G., Shapaeva, T. B., Dolgova, T. V., & Fedyanin, A. A. (2012). Femtosecond time-resolved Faraday rotation in thin magnetic films and magnetophotonic crystals. Journal of Applied Physics, 111(7), 07A944.

[211] Chiarello, C. (2020). Horizontal air-water two-phase slug flow: eulerian and lagrangian data analysis (Master’s thesis, Universidade Tecnológica Federal do Paraná).

[212] Chiarello, F. A., & Coclite, G. M. (2020). Non-local scalar conservation laws with discontinuous flux. arXiv preprint arXiv:2003.01975.

[213] Chirinko, R. S., & Wilson, D. J. (2017). Tax competition among US states: Racing to the bottom or riding on a seesaw?. Journal of Public Economics, 155, 147-163.

[214] Choa, E. B. C., Reyes, V. L. D. D., & Obsioma, R. E. O. A Theoretical Study on Emigration and Pension Design.

[215] Choi, S. H., Park, J. O., & Park, K. S. (2017). Tension analysis of a 6-degree-of-freedom cable-driven parallel robot considering dynamic pulley bearing friction. Advances in Mechanical Engineering, 9(8), 1687814017714981.

[216] Chorwadwala, A. M., & Mahadevan, R. (2015). An eigenvalue optimization problem for the p-Laplacian. Proceedings of the Royal Society of Edinburgh Section A: Mathematics, 145(6), 1145-1151.

[217] Christensen, W. M., & Thompson, J. R. (2010). Investigating student understanding of physics concepts and the underlying calculus concepts in thermodynamics. In Proceedings of the 13th Annual Conference on Research in Undergraduate Mathematics Education, Mathematical Association of America.

[218] Christensen, W. M., & Thompson, J. R. (2012). Investigating graphical representations of slope and derivative without a physics context. Physical Review Special Topics-Physics Education Research, 8(2), 023101.

[219] Christoph, J., Eiswirth, M., Hartmann, N., Imbihl, R., Kevrekidis, I., & Bär, M. (1999). Anomalous dispersion and pulse interaction in an excitable surface reaction. Physical review letters, 82(7), 1586.

[220] Chu, L. F., Leng, N., Zhang, J., Hou, Z., Mamott, D., Vereide, D. T., … & Thomson, J. A. (2016). Single-cell RNA-seq reveals novel regulators of human embryonic stem cell differentiation to definitive endoderm. Genome biology, 17(1), 1-20.

[221] Chursin, Y. A., & Fedorov, E. M. (2015). Methods of resolution enhancement of laser diameter measuring instruments. Optics & Laser Technology, 67, 86-92.

[222] Cicero, V. C. Three essays on FDI and uneven development (Doctoral dissertation, Universidade de São Paulo).

[223] Cina, J. A., Kovac, P. A., Jumper, C. C., Dean, J. C., & Scholes, G. D. (2016). Ultrafast transient absorption revisited: Phase-flips, spectral fingers, and other dynamical features. The Journal of chemical physics, 144(17), 175102.

[224] Cipriani, G. P., & Pascucci, F. (2020). Pension policies in a model with endogenous fertility. Journal of Pension Economics & Finance, 19(1), 109-125.

[225] Clees, N. (2018). Tracing the solid-liquid coexistence line of water based on an ab initio potential (Doctoral dissertation, uniwien).

[226] Coelho, P. M., & Poole, R. J. (2020). Heat Transfer of Power-Law Fluids in Plane Couette–Poiseuille Flows with Viscous Dissipation. Heat Transfer Engineering, 41(13), 1189-1207.

[227] Colomer, J., Melendez, J., de la Rosa, J. L., & Aguilar-Martin, J. (1997, July). A qualitative/quantitative representation of signals for supervision of continuous systems. In 1997 European Control Conference (ECC) (pp. 1445-1451). IEEE.

[228] Conte, G. Y. C., Marques, F. G., & Garcia, C. (2021, March). LQR and PID Control Design for a Pneumatic Diaphragm Valve. In 2021 IEEE International Conference on Automation/XXIV Congress of the Chilean Association of Automatic Control (ICA-ACCA) (pp. 1-7). IEEE.

[229] Cooper, N., Madkhaly, S., Johnson, D., Baldolini, D., & Hackermüller, L. (2021). Dual-frequency spectroscopy for compact systems and enhanced laser stabilisation. arXiv preprint arXiv:2106.11014.

[230] Corchón, L. C., & Marini, M. A. (Eds.). (2018). Handbook of Game Theory and Industrial Organization, Volume II: Applications (Vol. 2). Edward Elgar Publishing.

[231] Corhay, A., Kung, H., & Morales, G. (2016). Government maturity structure twists. Available at SSRN 2766020.

[232] Cornée, S., Jegers, M., & Szafarz, A. (2018). A theory of social finance.

[233] Correyero Plaza, S. (2020). Physics of plasma plumes accelerated by magnetic nozzles: an experimental and theoretical research.

[234] Cortes-Corrales, S. (2020). Essays On Social And Economic Networks (Doctoral dissertation, University of Leicester).

[235] Cortés, J. (2005, December). Achieving coordination tasks in finite time via nonsmooth gradient flows. In Proceedings of the 44th IEEE Conference on Decision and Control (pp. 6376-6381). IEEE.

[236] Corvaro, S., Miozzi, M., Postacchini, M., Mancinelli, A., & Brocchini, M. (2014). Fluid–particle interaction and generation of coherent structures over permeable beds: an experimental analysis. Advances in water resources, 72, 97-109.

[237] Costanzo, L., & Vitelli, M. (2019). A novel MPPT technique for single stage grid-connected PV systems: T4S. Energies, 12(23), 4501.

[238] Courjal, N., Porte, H., Hauden, J., Mollier, P., & Grossard, N. (2004). Modeling and optimization of low chirp LiNbO3 Mach-Zehnder modulators with an inverted ferroelectric domain section. Journal of Lightwave Technology, 22(5), 1338.

[239] Criscuolo, A., & Gnudi, A. (2013). Study of functions in a GeoGebra environment during” learning week”. North American GeoGebra Journal, 2(1).

[240] Cristea, B. (2008). Statistical properties of chaotic binary sequences. arXiv preprint arXiv:0805.4405.

[241] Cristian, Z., Cătălin, D., & Cristian, F. An FPGA Based Peak Detector for Magnetostrictive Current Sensors. Cristini, A. (2007). High performance workplace practices from the employees’ perspective. mimeo.

[242] Croasmun, A. A. (2012). Fast skeletonization of blood vessels.

[243] Cuaresma, J. C., & Glocker, C. (2020). Nontradable Goods and Fiscal Multipliers.

[244] Cuevas–Maraver, J., & Kevrekidis, P. G. (2019). Discrete Breathers in φ4 and Related Models. In A Dynamical Perspective on the ɸ4 Model (pp. 137-162). Springer,

[245] Cham. Da Cruz, J. P., & Lind, P. G. (2012). Heavy-tails in economic data: fundamental assumptions, modelling and analysis. arXiv preprint arXiv:1202.0142.

[246] Da Cruz, J. P., & Lind, P. G. (2012). Heavy-tails in economic data: fundamental assumptions, modelling and analysis. arXiv preprint arXiv:1202.0142.

[247] Da Cruz, J. P., & Lind, P. G. (2012). Self-organized criticality in a network of economic agents with finite consumption. Physica A: Statistical Mechanics and its Applications, 391(4), 1445-1452.

[248] Da Silva, B. A., MANRIQUE, A. L., BIANCHINI, B. L., DUBUS, M. T. G., & DE SOUZA, V. H. G. (2002). Analyzing functions’ behavior in a computational environment. In Proceedings of the International Conference on the Teaching of Mathematics.

[249] Dabrowski, M. P., Stachowiak, T., & Szydłowski, M. (2003). Phantom cosmologies. Physical Review D, 68(10), 103519.

[250] Dajka, J., Szopa, M., Vourdas, A., & Zipper, E. (2004). Persistent currents in the presence of nonclassical electromagnetic fields. Physical Review B, 69(4), 045305.

[251] Dambacher, J. M., & Ramos-Jiliberto, R. (2007). Understanding and predicting effects of modified interactions through a qualitative analysis of community structure. The Quarterly review of biology, 82(3), 227-250.

[252] Dandoussou, A., Kamta, M., Bitjoka, L., Wira, P., & Kuitché, A. (2017). Comparative study of the reliability of MPPT algorithms for the crystalline silicon photovoltaic modules in variable weather conditions. Journal of Electrical Systems and Information Technology, 4(1), 213-224.

[253] Dantas, R. (2017). DC grid discriminating protection (Doctoral dissertation, Cardiff University).

[254] Das, S. L., Mandal, T., & Gupta, S. S. (2013). Inextensional vibration of zig-zag single-walled carbon nanotubes using nonlocal elasticity theories. International Journal of Solids and Structures, 50(18), 2792-2797.

[255] Dasgupta, Z. (2020). What Explains India’s High Growth Phase? Investment, Exports and Growth during the Liberalization Period. Working Paper, Azim Premji University.

[256] Dash, S., Maurya, M. R., Venkatasubramanian, V., & Rengaswamy, R. (2004). A novel interval‐halving framework for automated identification of process trends. AIChE journal, 50(1), 149-162.

[257] Dash, S., Rengaswamy, R., & Venkatasubramanian, V. (2003). Fuzzy-logic based trend classification for fault diagnosis of chemical processes. Computers & Chemical Engineering, 27(3), 347-362.

[258] Datta, S., & Saratchand, C. (2021). Non-Pharmaceutical Interventions in a Generalized Model of Interactive Dynamics Between COVID-19 and The Economy.

[259] Davydov, S. Y., & Tikhonov, S. K. (1998). Pressure dependence of the dielectric and optical properties of wide-gap semiconductors. Semiconductors, 32(9), 947-949.

[260] Day, T., & McLeod, D. V. (2018). The role of phenotypic plasticity in moderating evolutionary conflict. The American Naturalist, 192(2), 230-240.

[261] De Gregorio, A., & Iafrate, F. (2021). Telegraph random evolutions on a circle. Stochastic Processes and their Applications, 141, 79-108.

[262] De Jaegher, K. (2019). Strategic framing to influence clients’ risky decisions. Theory and Decision, 86(3), 437-462.

[263] De Jong, H. (2003). Qualitative Modeling and Simulation of Genetic Regulatory Networks. In European Symposium on Intelligent Technologies, Hybrid Systems and their implementation on Smart Adaptive Systems. July 2003.

[264] de La Bruslerie, H. (2017, May). Debt and private benefits appropriation by a controlling shareholder: Introducing a creditors’ holdup effect. WFS Sardinia Conference.

[265] de la Macorra, A. (2016). Dark energy parametrization motivated by scalar field dynamics. Classical and Quantum Gravity, 33(9), 095001.

[266] de Lange, J. H., van Niekerk, D. M., & Cukrowski, I. (2018). FALDI‐based criterion for and the origin of an electron density bridge with an associated (3,–1) critical point on Bader’s molecular graph. Journal of computational chemistry, 39(27), 2283-2299.

[267] de Lange, J. H., van Niekerk, D. M., & Cukrowski, I. (2019). Quantifying individual (anti) bonding molecular orbitals’ contributions to chemical bonding. Physical Chemistry Chemical Physics, 21(37), 20988-20998.

[268] De Melo, F., & Laurent, M. (1996). Effects of competitive activation on precision movement control. Perceptual and motor skills, 83(3_suppl), 1203-1208.

[269] de Morais, A. E. (2016). Analysis and Simulation of a PWM Converter Designed to Perform Harmonic Compensation and Maximum Power Point Tracking in a Grid-Connected Solar System (Doctoral dissertation).

[270] De Oliveira, A. E., Haiduke, R. L. A., & Bruns, R. E. (2000). The infrared fundamental intensities and polar tensor of CF4. Spectrochimica Acta Part A: Molecular and Biomolecular Spectroscopy, 56(7), 1329-1335.

[271] de Pereda, D., Romero-Vivo, S., & Bondia, J. (2013). On the computation of output bounds on parallel inputs pharmacokinetic models with parametric uncertainty. Mathematical and Computer Modelling, 57(7-8), 1760-1767.

[272] De Pereda, D., Romero-Vivo, S., Ricarte, B., & Bondia, J. (2012). On the prediction of glucose concentration under intra-patient variability in type 1 diabetes: A monotone systems approach. Computer methods and programs in biomedicine, 108(3), 993-1001.

[273] de Sisternes, L., Jonna, G., Moss, J., Marmor, M. F., Leng, T., & Rubin, D. L. (2017). Automated intraretinal segmentation of SD-OCT images in normal and age-related macular degeneration eyes. Biomedical Optics Express, 8(3), 1926-1949.

[274] Deantoni, J., & Gomes, C. (2018). Towards a ultimate formally verified master algorithm. Short Term Scientific Report COST IC1404.

[275] Debu, D. T., Ladani, F. T., French, D., Bauman, S. J., & Herzog, J. B. (2019). Hyperbolic plasmon–phonon dispersion on group velocity reversal and tunable spontaneous emission in graphene–ferroelectric substrate. npj 2D Materials and Applications, 3(1), 1-8.

[276] Delbono, F., & Lambertini, L. (2015). Investigating the Strategic Nature of Supply Functions in Oligopoly.

[277] Delis, S., Mademlis, I., Nikolaidis, N., & Pitas, I. (2016). Automatic detection of 3D quality defects in stereoscopic videos using binocular disparity. IEEE Transactions on Circuits and Systems for Video Technology, 27(5), 977-991.

[278] Delmez, F., & Vandenberghe, V. (2018). Long working hours make us less productive but also less costly. Labour, 32(4), 259-287.

[279] Demirag, Y., Frenkel, C., Payvand, M., & Indiveri, G. (2021). Online Training of Spiking Recurrent Neural Networks with Phase-Change Memory Synapses. arXiv preprint arXiv:2108.01804.

[280] Denny, J. K., Daniel, M. B., & Kovacs, F. A. (2007). Computing and fitting SSNMR powder patterns with the arithmetic‐geometric mean and edge detection. Concepts in Magnetic Resonance Part A: An Educational Journal, 30(1), 1-20.

[281] Deuster, C. (2019). Climate change, education and mobility in Africa (No. wp1904). Universidade Nova de Lisboa, Faculdade de Economia, NOVAFRICA.

[282] Devine, M. K., & Jiles, D. C. (1996). The magnetomechanical effect in electrolytic iron. Journal of applied physics, 79(8), 5493-5495.

[283] Di Nola, A., Kocharkov, G., & Vasilev, A. (2017). Productivity, Taxation and Evasion: An Analysis of the Determinants of the Informal Economy (No. 2017-04). Department of Economics, University of Konstanz.

[284] Di Nola, A., Kocharkov, G., & Vasilev, A. (2019). Envelope wages, hidden production and labor productivity. The BE Journal of Macroeconomics, 19(2).

[285] Dias, M., Rosiński, M., Rodrigues, P. C. R., Correia, J. B., & Carvalho, P. A. (2021). Gibbs-Thomson effect as driving force for liquid film migration: Converting metallic into ceramic fibers through intrinsic oxidation. Acta Materialia, 218, 117216.

[286] Diaz, M., Sailor, K., Cheung, D., & Kuslansky, G. (2004). Category size effects in semantic and letter fluency in Alzheimer’s patients. Brain and language, 89(1), 108-114.

[287] Diep, P., Eisfeldt, A. L., & Richardson, S. (2021). The cross section of MBS returns. The Journal of Finance, 76(5), 2093-2151.

[288] Dimova, S. L. (2000). Numerical problems in modelling of collision in sliding systems subjected to seismic excitations. Advances in Engineering Software, 31(7), 467-471.

[289] Dong, H., Prasad, D. K., & Chen, I. M. (2018). Accurate detection of ellipses with false detection control at video rates using a gradient analysis. Pattern Recognition, 81, 112-130.

[290] Dong, H., Sun, G., Pang, W. C., Asadi, E., Prasad, D. K., & Chen, I. M. (2018). Fast ellipse detection via gradient information for robotic manipulation of cylindrical objects. IEEE Robotics and Automation Letters, 3(4), 2754-2761.

[291] Dong, J. G., & Xue, X. (2015). Finite-time synchronization of Kuramoto-type oscillators. Nonlinear Analysis: Real World Applications, 26, 133-149.

[292] Dong, J., Li, J., Zhu, F., Li, Z., & FaRawi, R. (2019). Melting curve minimum of barium carbonate BaCO3 near 5 GPa. American Mineralogist: Journal of Earth and Planetary Materials, 104(5), 671-678.

[293] Dong, L., & Meng, X. (2018). Energy efficiency in multiuser transmission over parallel frequency channels. IEEE Transactions on Communications, 66(9), 4234-4248.

[294] Dong, X., Okwudire, C., Wang, J., & Barry, O. (2019, August). On the friction isolator for precision motion control and its dynamics. In International Design Engineering Technical Conferences and Computers and Information in Engineering Conference (Vol. 59285, p. V008T10A067). American Society of Mechanical Engineers.

[295] Dong, Y., Liao, F., Pang, T., Su, H., Zhu, J., Hu, X., & Li, J. (2018). Boosting adversarial attacks with momentum. In Proceedings of the IEEE conference on computer vision and pattern recognition (pp. 9185-9193).

[296] Drew, M. S., Connah, D., Finlayson, G. D., & Bloj, M. (2009, February). Improved colour to greyscale via integrability correction. In Human Vision and Electronic Imaging XIV (Vol. 7240, p. 72401B). International Society for Optics and Photonics.

[297] Drouhin, N. (2001). Lifetime uncertainty and time preference. Theory and Decision, 51(2), 145-172.

[298] Drozd, L. A., & Kowalik, M. (2019, November). Credit cards and the Great Recession: The collapse of teasers. In 2019 Meeting Papers (No. 1047). Society for Economic Dynamics.

[299] Duchen, P., Leuenberger, C., Szilágyi, S. M., Harmon, L., Eastman, J., Schweizer, M., & Wegmann, D. (2017). Inference of evolutionary jumps in large phylogenies using Lévy processes. Systematic biology, 66(6), 950-963.

[300] Duprat, C., Balarac, G., Métais, O., Congedo, P. M., & Brugière, O. (2011). A wall-layer model for large-eddy simulations of turbulent flows with/out pressure gradient. Physics of fluids, 23(1), 015101.

[301] Duque, E. I., & Lopez-Aguayo, S. (2019). Generation of solitons in media with arbitrary degree of nonlocality using an optimization procedure. Physical Review A, 99(1), 013831.

[302] Dvali, G., Franca, A., & Gomez, C. (2012). Road signs for UV-completion. arXiv preprint arXiv:1204.6388.

[303] Dykstra, K., Pugh, R., & Krause, A. (2010). Visualization concepts to enhance quantitative decision making in drug development. The Journal of Clinical Pharmacology, 50(S9), 130S-139S.

[304] Echer, L., & Marczak, R. J. Optimized representation for overlapped welded components using shell FE along with the structural stress method.

[305] Edström, A. (2017). Magnetocrystalline anisotropy of Laves phase Fe 2 Ta 1− x W x from first principles: Effect of 3 d− 5 d hybridization. Physical Review B, 96(6), 064422.

[306] Edwards, J., Gill, C., Tran, K., Linder, L., Zelenin, D., Baranauskas, D., … & Tan, H. (2009, June). A 12.5 Gbps analog timing recovery system for PRML optical receivers. In 2009 IEEE Radio Frequency Integrated Circuits Symposium (pp. 535-538). IEEE.

[307] Efimov, D., & Perruquetti, W. (2016). On conditions of oscillations and multi-homogeneity. Mathematics of Control, Signals, and Systems, 28(1), 1-37.

[308] Eftimov, T. A., N’G, K., Lesage, F. J., Mikulic, P., & Bock, W. J. (2020). Thermal gradients sensing using LPGs with a spatially varying effective refractive index difference. Optics & Laser Technology, 122, 105836.

[309] Eiroa, E. F., & Simeone, C. (2004). Cylindrical thin-shell wormholes. Physical Review D, 70(4), 044008.

[310] Eisfeldt, A. L., Lustig, H., & Zhang, L. (2017). Complex asset markets (No. w23476). National Bureau of Economic Research.

[311] El-Morsy, M. A. (2012). A new algorithm for automatic double bright fringe of multiple-beam fizeau fringe skeletonization using Fourier transform method of fringe pattern analysis.

[312] El‐Morsy, M. A., Yatagai, T., Hamza, A., Mabrouk, M. A., & Sokkar, T. Z. N. (2002). Multiple‐beam Fizeau fringe‐pattern analysis using Fourier transform method for accurate measurement of fiber refractive index profile of polymer fiber. Journal of applied polymer science, 85(3), 475-484.

[313] Elgeziry, M., Elsadd, M., Elkalashy, N., Kawady, T., Taalab, A. M., & Izzularab, M. A. (2019). Non‐pilot protection scheme for multi‐terminal VSC–HVDC transmission systems. IET Renewable Power Generation, 13(16), 3033-3042.

[314] Englmann, F. C. (2015). Can Public Debt Be Sustainable?-A Contribution to the Theory of the Sustainability of Public Debt.

[315] Erästö, P., & Holmström, L. (2005). Bayesian multiscale smoothing for making inferences about features in scatterplots. Journal of Computational and Graphical Statistics, 14(3), 569-589.

[316] Eslamian, M., & Saghir, M. Z. (2012). Thermodiffusion in binary and ternary nonpolar hydrocarbon+ alcohol mixtures. Journal of Non-Equilibrium Thermodynamics, 37(4), 329-351.

[317] Espinoza-Trejo, D. R., Diez, E., Barcenas, E., Verde, C., Espinosa-Pérez, G., & Bossio, G. (2016, October). Model-based fault detection and isolation in a MPPT boost converter for photovoltaic systems. In IECON 2016-42nd Annual Conference of the IEEE Industrial Electronics Society (pp. 2189-2194). IEEE.

[318] Esram, T., & Chapman, P. L. (2007). Comparison of photovoltaic array maximum power point tracking techniques. IEEE Transactions on energy conversion, 22(2), 439-449.

[319] Estemirova, S., Mitrofanov, V., Uporov, S., & Kozhina, G. (2018). Structural and magnetic properties, magnetocaloric effect in (La0. 7Pr0. 3) 0.8 Sr0. 2Mn0. 9Ti0. 1O3±δ (δ= 0.03, 0.02,− 0.03). Journal of Alloys and Compounds, 751, 96-106.

[320] Estrada, R. (2017). The effect of the increasing demand for elite schools on stratification.

[321] Estrin, Y., Gottstein, G., & Shvindlerman, L. S. (1999). Inhibition of void dissolution by vacancies. Scripta materialia, 41(4), 415-420.

[322] Everett, J. E., & Weisberg, J. M. (2001). Emission beam geometry of selected pulsars derived from average pulse polarization data. The Astrophysical Journal, 553(1), 341.

[323] Faghri, F., Vasconcelos, C., Fleet, D. J., Pedregosa, F., & Roux, N. L. (2021). Bridging the Gap Between Adversarial Robustness and Optimization Bias. arXiv preprint arXiv:2102.08868.

[324] Fajardo, J. M., Gomez, O., & Prieto, F. (2021). EMG hand gesture classification using handcrafted and deep features. Biomedical Signal Processing and Control, 63, 102210.

[325] Fan, K. (2017). Unifying the Stochastic Spectral Descent for Restricted Boltzmann Machines with Bernoulli or Gaussian Inputs. arXiv preprint arXiv:1703.09766.

[326] Fan, Z., Chen, Z., Li, Y., & Malomed, B. A. (2020). Gap and embedded solitons in microwave-coupled binary condensates. Physical Review A, 101(1), 013607.

[327] Faran, T., & Sari, R. E. (2021). The non-relativistic interiors of ultra-relativistic explosions: Extension to the Blandford–McKee solutions. Physics of Fluids, 33(2), 026105.

[328] Farhan, R. N., Aliesawi, S. A., & Abdulkareem, Z. Z. (2014). PCA and DWT with Resilient ANN based Organic Compounds Charts Recognition. International Journal of Computer Applications, 88(1).

[329] Farvaque, E., & Matsueda, N. (2017). Optimal term length for an overconfident central banker. The Singapore Economic Review, 62(01), 179-192.

[330] Fateen, S. E. K., & Bonilla-Petriciolet, A. (2014). A note on effective phase stability calculations using a Gradient-Based Cuckoo Search algorithm. Fluid phase equilibria, 375, 360-366.

[331] Fay, S. (2000). Dynamical study of the empty Bianchi type I model in generalised scalar-tensor theory. General Relativity and Gravitation, 32(2), 203-220.

[332] Feliu, E. (2019). Sign-sensitivities for reaction networks: an algebraic approach. arXiv preprint arXiv:1908.11655.

[333] Fernández, A., Álvarez, M. X., & Bianconi, F. (2011). Image classification with binary gradient contours. Optics and Lasers in Engineering, 49(9-10), 1177-1184.

[334] Ferreira, P. M., Nebhen, J., Klisnick, G., & Benlarbi-Delai, A. (2021). Neuromorphic analog spiking-modulator for audio signal processing. Analog Integrated Circuits and Signal Processing, 106(1), 261-276.

[335] Ferret Mas, J., & Mihailov, A. (2021). Green Quantitative Easing as Intergenerational Climate Justice: On Political Theory and Pareto Efficiency in Reversing Now Human-Caused Environmental Damage (No. em-dp2021-15). Department of Economics, University of Reading.

[336] Ferretti, E., Di Leo, A., & Viola, E. (2003). A novel approach for the identification of material elastic constants. In Problems in Structural Identification and Diagnostics: General Aspects and Applications (pp. 117-131). Springer, Vienna.

[337] Fiedler, B., Nieto, A. L., Rand, R. H., Sah, S. M., Schneider, I., & de Wolff, B. (2020). Coexistence of infinitely many large, stable, rapidly oscillating periodic solutions in time-delayed Duffing oscillators. Journal of Differential Equations, 268(10), 5969-5995.

[338] Figueroa-López, J. E., & Olafsson, S. (2016). Short-term asymptotics for the implied volatility skew under a stochastic volatility model with Lévy jumps. Finance and Stochastics, 20(4), 973-1020.

[339] Figueroa-Santos, M. A., Siegel, J. B., & Stefanopoulou, A. G. (2020). Leveraging Cell Expansion Sensing in State of Charge Estimation: Practical Considerations. Energies, 13(10), 2653.

[340] Figueroa, E., & Pastén, R. (2015). Beyond additive preferences: Economic behavior and the income pollution path. Resource and Energy Economics, 41, 91-102.

[341] Fijan, D., & Wilson, M. (2019). The interactions between thermodynamic anomalies. The Journal of chemical physics, 151(2), 024502.

[342] Filippov, A. V., Fortov, V. E., Reshetniak, V. V., Starostin, A. N., & Tkachenko, I. M. (2020). Electrostatic interactions and stability of dusty plasmas and the multicomponent Ornstein–Zernike equation. AIP Advances, 10(4), 045232.

[343] Fistul, M. V. (2002). Symmetry broken motion of a periodically driven brownian particle: Nonadiabatic regime. Physical Review E, 65(4), 046621.

[344] Flores, J. L., & Ferrari, J. A. (2010). Orientation-selective edge detection and enhancement using the irradiance transport equation. Applied optics, 49(4), 619-624.

[345] Florinsky, I. V. (2000). Relationships between topographically expressed zones of flow accumulation and sites of fault intersection: analysis by means of digital terrain modelling. Environmental Modelling & Software, 15(1), 87-100.

[346] Foreman-Peck, J., & Zhou, P. (2021). Fertility versus productivity: a model of growth with evolutionary equilibria. Journal of Population Economics, 34(3), 1073-1104.

[347] Fowl, L., Chiang, P. Y., Goldblum, M., Geiping, J., Bansal, A., Czaja, W., & Goldstein, T. (2021). Preventing unauthorized use of proprietary data: Poisoning for secure dataset release. arXiv preprint arXiv:2103.02683.

[348] Fraerman, A. A., Gusev, S. A., Nefedov, I. M., Karetnikova, I. R., & Mazo, L. A. (1999). 2D Lattices of Ferromagnetic Nanoparticles as Supermagnetics. RUSSIAN ACADEMY OF SCIENCES NIZHNY NOVGOROD INSTITUTE FOR PHYSICS OF MICROSTRUCTURES.

[349] Frassi, B., Gnecco, G., Pammolli, F., & Wen, X. (2019). Intragenerational redistribution in a funded pension system. Journal of Pension Economics & Finance, 18(2), 271-303.

[350] Fraz, M. M., Barman, S. A., Remagnino, P., Hoppe, A., Basit, A., Uyyanonvara, B., … & Owen, C. G. (2012). An approach to localize the retinal blood vessels using bit planes and centerline detection. Computer methods and programs in biomedicine, 108(2), 600-616.

[351] Fraz, M. M., Remagnino, P., Hoppe, A., Uyyanonvara, B., Owen, C. G., Rudnicka, A. R., & Barman, S. A. (2011, September). Retinal vessel extraction using first-order derivative of Gaussian and morphological processing. In International Symposium on Visual Computing (pp. 410-420). Springer, Berlin, Heidelberg.

[352] Friesen, A. L., & Domingos, P. (2017). Deep learning as a mixed convex-combinatorial optimization problem. arXiv preprint arXiv:1710.11573.

[353] Fryazinov, O., Pasko, A. A., & Comninos, P. (2010, May). Extending Revised Affine Arithmetic for Fast Reliable Ray-tracing of Procedurally Defined Implicit Surfaces. In GRAPP (pp. 199-207).

[354] Fuentealba, C., Badillo, E., Sánchez-Matamoros, G., & Cárcamo, A. (2018). The understanding of the derivative concept in higher education. EURASIA Journal of Mathematics, Science and Technology Education, 15(2), em1662.

[355] Fuertes, A., & Sosvilla-Rivero, S. (2019). Forecasting emerging market currencies: Are inflation expectations useful?. Available at SSRN 3473147.

[356] Fujii, F., Tatebatake, K. I., Morita, K., & Shiinoki, T. (2018, September). A Bouc–Wen model-based compensation of the frequency-dependent hysteresis of a piezoelectric actuator exhibiting odd harmonic oscillation. In Actuators (Vol. 7, No. 3, p. 37). Multidisciplinary Digital Publishing Institute.

[357] Fukuda, T., Fujimoto, H., Hori, Y., Kawano, D., Goto, Y., Takeda, Y., & Sato, K. (2017). Basic Study on Range Extension Autonomous Driving of Electric Vehicle Considering Velocity Constraint for Real-Time Implementation. In IEEJ International Workshop on Sensing, Actuation, Motion Control, and Optimization (pp. 1-6).

[358] Fyrdahl, A., Ramos, J. G., Eriksson, M. J., Caidahl, K., Ugander, M., & Sigfridsson, A. (2020). Sector‐wise golden‐angle phase contrast with high temporal resolution for evaluation of left ventricular diastolic dysfunction. Magnetic resonance in medicine, 83(4), 1310-1321.

[359] Gabszewicz, J. J., Marini, M., & Zanaj, S. (2018). Random encounters and information diffusion about markets. CORE.

[360] Gad, A. F., Gad, A. F., & John, S. (2018). Practical computer vision applications using deep learning with CNNs. Berkeley: Apress.

[361] Gajer, M. I. R. O. S. Ł. A. W. (2009). Examining the impact of positive and negative constant learning on the evolution rate. Task Quarterly, 13(4), 35-362.

[362] Gallardo, M., Pizarro, D., Bartoli, A., & Collins, T. (2015). Shape-from-template in flatland. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (pp. 2847-2854).

[363] Galvao, A. F., Juhl, T., Montes-Rojas, G., & Olmo, J. (2018). Testing slope homogeneity in quantile regression panel data with an application to the cross-section of stock returns. Journal of Financial Econometrics, 16(2), 211-243.

[364] Ganin, Y., & Lempitsky, V. (2015, June). Unsupervised domain adaptation by backpropagation. In International conference on machine learning (pp. 1180-1189). PMLR.

[365] Gantmakher, V. F. (2011). Mooij rule and weak localization. JETP letters, 94(8), 626-628.

[366] Gao, L., Zhang, Q., Song, J., Liu, X., & Shen, H. T. (2020, August). Patch-wise attack for fooling deep neural network. In European Conference on Computer Vision (pp. 307-322). Springer, Cham.

[367] Gao, R., Gao, Q., Zhang, Q., Juefei-Xu, F., Yu, H., & Feng, W. (2021). Adversarial Relighting against Face Recognition. arXiv preprint arXiv:2108.07920.

[368] Garcia-Saenz, S., Renaux-Petel, S., & Ronayne, J. (2018). Primordial fluctuations and non-Gaussianities in sidetracked inflation. Journal of Cosmology and Astroparticle Physics, 2018(07), 057.

[369] García, M., Llinares, S., & Sánchez-Matamoros, G. (2011). Characterizing thematized derivative schema by the underlying emergent structures. International journal of science and mathematics education, 9(5), 1023-1045.

[370] Garry, K., Di Pasquale, D., Prince, S. A., & Lawson, N. J. The influence of SPIV data processing parameters on aircraft wing wake vortex assessment. ICAS.

[371] Gaudin, G. (2016). Pass-through, vertical contracts, and bargains. Economics Letters, 139, 1-4.

[372] Geday, M. A., Kaminsky, W., Lewis, J. G., & Glazer, A. M. (2000). Images of absolute retardance L. Deltan, using the rotating polariser method. Journal of microscopy, 198(1), 1-9.

[373] Gehring, P., Thijssen, J. M., & van der Zant, H. S. (2019). Single-molecule quantum-transport phenomena in break junctions. Nature Reviews Physics, 1(6), 381-396.

[374] Geiping, J., Fowl, L., Somepalli, G., Goldblum, M., Moeller, M., & Goldstein, T. (2021). What Doesn’t Kill You Makes You Robust (er): Adversarial Training against Poisons and Backdoors. arXiv preprint arXiv:2102.13624.

[375] Gervini, V. I., Gomes, S. C. P., & Da Rosa, V. S. (2003). A new robotic drive joint friction compensation mechanism using neural networks. Journal of the Brazilian Society of Mechanical Sciences and Engineering, 25, 129-139.

[376] Gess, B., Liu, W., & Schenke, A. (2020). Random attractors for locally monotone stochastic partial differential equations. Journal of Differential Equations, 269(4), 3414-3455.

[377] Ghatak, M., & Karaivanov, A. (2011). Contractual structure and endogenous matching in partnerships.

[378] Ghazi, B., & Jayram, T. S. (2018). Resource-efficient common randomness and secret-key schemes. In Proceedings of the Twenty-Ninth Annual ACM-SIAM Symposium on Discrete Algorithms (pp. 1834-1853). Society for Industrial and Applied Mathematics.

[379] Ghorbani, A., Abid, A., & Zou, J. (2019, July). Interpretation of neural networks is fragile. In Proceedings of the AAAI Conference on Artificial Intelligence (Vol. 33, No. 01, pp. 3681-3688).

[380] Ghys, É., & Ranicki, A. (2015). Signatures in algebra, topology and dynamics. arXiv preprint arXiv:1512.09258.

[381] Gimeno-Segovia, M., & Llanes-Estrada, F. J. (2008). From Euclidean to Minkowski space with the Cauchy–Riemann equations. The European Physical Journal C, 56(4), 557-569.

[382] Giresini, L., Fragiacomo, M., & Lourenço, P. B. (2015). Comparison between rocking analysis and kinematic analysis for the dynamic out‐of‐plane behavior of masonry walls. Earthquake Engineering & Structural Dynamics, 44(13), 2359-2376.

[383] Giuliani, G., & Donati, S. (2005). Laser interferometry. Unlocking dynamical diversity: optical feedback effects on semiconductor lasers, 217-255.

[384] Gkioulekas, E. (2014). Generalized local test for local extrema in single-variable functions. International journal of mathematical education in science and technology, 45(1), 118-131.

[385] Gladkikh, P. (2004). Design of laser-electron storage ring lattice dedicated to generation of intense X-rays under Compton scattering. arXiv preprint physics/0406007.

[386] Godino-Llorente, J. I., Shattuck-Hufnagel, S., Choi, J. Y., Moro-Velázquez, L., & Gómez-García, J. A. (2017). Towards the identification of Idiopathic Parkinson’s Disease from the speech. New articulatory kinetic biomarkers. PloS one, 12(12), e0189583.

[387] Godoy, A., Yang, Z., Ravaioli, U., & Gámiz, F. (2005). Effects of nonparabolic bands in quantum wires. Journal of applied physics, 98(1), 013702.

[388] Golchi, S., Bingham, D. R., Chipman, H., & Campbell, D. A. (2015). Monotone emulation of computer experiments. SIAM/ASA Journal on Uncertainty Quantification, 3(1), 370-392.

[389] Golosov, E. (2017). The term structure of risk premia with heterogeneous preferences and beliefs.

[390] Gómez‐Corral, A., & López‐García, M. (2018). Perturbation analysis in finite LD‐QBD processes and applications to epidemic models. Numerical linear algebra with applications, 25(5), e2160.

[391] Gómez, Á. L. P., Maimó, L. F., Celdrán, A. H., Clemente, F. J. G., & Cleary, F. (2021). Crafting Adversarial Samples for Anomaly Detectors in Industrial Control Systems. Procedia Computer Science, 184, 573-580.

[392] Goodfellow, I. J., Shlens, J., & Szegedy, C. (2014). Explaining and harnessing adversarial examples. arXiv preprint arXiv:1412.6572.

[393] Górecki, K., Zarębski, J., & Górecki, P. (2021). Influence of Thermal Phenomena on the Characteristics of Selected Electronics Networks. Energies, 14(16), 4750.

[394] Gosling, J. P., O’Hagan, A., & Oakley, J. E. (2007). Nonparametric elicitation for heavy-tailed prior distributions. Bayesian Analysis, 2(4), 693-718.

[395] Gould, A. M. (2010). Finite volume solution of the unsteady free surface flow equations.

[396] Govind, D., Biju, A. S., & Smily, A. (2014, July). Automatic speech polarity detection using phase information from complex analytic signal representations. In 2014 International Conference on Signal Processing and Communications (SPCOM) (pp. 1-5). IEEE.

[397] Grainich, D., & Peter, R. (2017, April). On the Interaction between the Demand for Saving and the Demand for Risk Reduction. In Seminars of European Group of Risk and Insurance Economists (pp. 1-22).

[398] Gramsch, S., Sarishvili, A., & Schmeißer, A. (2020). Analysis of the fiber laydown quality in spunbond processes with simulation experiments evaluated by blocked neural networks. Advances in Polymer Technology, 2020.

[399] Grau, A., Climent, J., Serratosa, F., & Sanfeliu, A. (2002, August). Texprint: A new algorithm to discriminate textures structurally. In Joint IAPR International Workshops on Statistical Techniques in Pattern Recognition (SPR) and Structural and Syntactic Pattern Recognition (SSPR) (pp. 368-377). Springer, Berlin, Heidelberg.

[400] Green, B. E., & Ott, J. D. (2005). F/A-18C to E wing morphing study for the abrupt-wing-stall program. Journal of aircraft, 42(3), 617-626.

[401] Grimmer, M., Schmidt, K., Duarte, J. E., Neuner, L., Koginov, G., & Riener, R. (2019). Stance and swing detection based on the angular velocity of lower limb segments during walking. Frontiers in neurorobotics, 13, 57.

[402] Guan, D., Zhong, Y., Feng, J., Xu, L., & Wang, L. (2012, June). Detection of the period of voice based on wavelet. In 2012 IEEE International Conference on Information and Automation (pp. 876-881). IEEE.

[403] Gudina, S. V., Arapov, Y. G., Neverov, V. N., Savelyev, A. P., Podgornykh, S. M., Shelushinina, N. G., & Yakunin, M. V. (2019). Effect of exchange electron-electron interaction on conductivity of InGaAs single and double quantum wells. Physica E: Low-dimensional Systems and Nanostructures, 113, 14-20.

[404] Guo, C. S., Wang, B. Y., Sha, B., Lu, Y. J., & Xu, M. Y. (2014). Phase derivative method for reconstruction of slightly off-axis digital holograms. Optics express, 22(25), 30553-30558.

[405] Gupta, R., Stander, L., & Vaona, A. (2017). Openness and Growth: Is the Relationship Non-Linear? (No. 201703).

[406] Gurovich, B. A., Kuleshov, D. A., Maltsev, D. A., Chugunov, O. K., Frolov, A. S., & Shtrombakh, Y. I. (2019). Radiation degradation mechanisms of reactor graphites properties. Procedia Structural Integrity, 23, 589-594.

[407] Gürsoy, U., Järvinen, M., Nijs, G., & Pedraza, J. F. (2019). Inverse anisotropic catalysis in holographic QCD. Journal of High Energy Physics, 2019(4), 1-41.

[408] Guthrie, J. D. (2019). Exploration Into the Scope and Mechanism of the Platinum-catalyzed Acylation of 2-(aryloxy) pyridines.

[409] Gutiérrez-Rodríguez, A. E., Medina-Pérez, M. A., Martínez-Trinidad, J. F., Carrasco-Ochoa, J. A., & García-Borroto, M. (2010, September). New dissimilarity measures for ultraviolet spectra identification. In Mexican Conference on Pattern Recognition (pp. 220-229). Springer, Berlin, Heidelberg.

[410] Haessig, G. (2018). Neuromorphic computation using event-based sensors: from algorithms to hardware implementations (Doctoral dissertation, Sorbonne université).

[411] Hahkioniemi, M. (2004). Perceptual and Symbolic Representations as a Starting Point of the Acquisition of the Derivative. International Group for the Psychology of Mathematics Education.

[412] Hähkiöniemi, M. (2007). How the derivative becomes visible: the case of Daniel. Teaching Mathematics and Computer Science, 5(1), 81-97.

[413] Hähkiöniemi, M. (2008). Durability and meaningfulness of mathematical knowledge–the case of the derivative concept. In Proceedings of the joint meeting of PME (Vol. 32, pp. 113-120).

[414] Hallett, A. H., Jensen, S. E. H., Sveinsson, T. S., & Vieira, F. (2019). Sustainable fiscal strategies under changing demographics. European Journal of Political Economy, 57, 34-52.

[415] Hambel, C., Kraft, H., & Schwartz, E. (2021). The social cost of carbon in a non-cooperative world. Journal of International Economics, 131, 103490.

[416] Han, P., Wang, S., & Leung, K. K. (2020, January). Adaptive gradient sparsification for efficient federated learning: An online learning approach. In 2020 IEEE 40th International Conference on Distributed Computing Systems (ICDCS) (pp. 300-310). IEEE.

[417] Hanisch, C., & Ziese, M. (2021). Rolling friction in a 3D printed stringless pendulum. European Journal of Physics, 42(4), 045004.

[418] Hansen, J. S., & Tho, T. F. (2017). Newspapers’ political differentiation: a multi-homing approach (Master’s thesis).

[419] Hao, H., Scalo, C., & Semperlotti, F. (2021). Flexural-mode solid-state thermoacoustics. Mechanical Systems and Signal Processing, 148, 107143.

[420] Hartwig, B., Meinerding, C., & Schüler, Y. S. (2020). Identifying indicators of systemic risk.

[421] Hasan, M. M., & Holleman, J. (2021). Training Neural Networks Using the Property of Negative Feedback to Inverse a Function. arXiv preprint arXiv:2103.14115.

[422] Hashiehbaf, A., & Romano, G. P. (2014, July). Experimental investigation on circular and non-circular synthetic jets issuing from sharp edge orifices. In 17th International Symposium on Applications of Laser Techniques to Fluid Mechanics, Lisbon, Portugal (pp. 7-10).

[423] Haslag, J. (2020). Monetary and Fiscal Policy Interactions in a Frictional Model of Money, Nominal Public Debt and Banking. Nominal Public Debt and Banking (May 1, 2020).

[424] Hassan, H. F., Abou-Loukh, S. J., & Ibraheem, I. K. (2020). Teleoperated robotic arm movement using electromyography signal with wearable Myo armband. Journal of King Saud University-Engineering Sciences, 32(6), 378-387.

[425] Haucap, J., & Klein, G. J. (2012). How regulation affects network and service quality in related markets. Economics Letters, 117(2), 521-524.

[426] Hazaveh, N. K., Rodgers, G. W., Chase, J. G., & Pampanin, S. (2017). Experimental test and validation of a direction-and displacement-dependent viscous damper. Journal of Engineering Mechanics, 143(11), 04017132.

[427] Hempel, M., Dexheimer, V., Schramm, S., & Iosilevskiy, I. (2018). Noncongruence of phase transitions in strongly interacting matter. In The Fourteenth Marcel Grossmann Meeting On Recent Developments in Theoretical and Experimental General Relativity, Astrophysics, and Relativistic Field Theories: Proceedings of the MG14 Meeting on General Relativity, University of Rome “La Sapienza”, Italy, 12–18 July 2015 (pp. 3407-3413).

[428] Hendrickx, J. M., Gerencsér, B., & Fidan, B. (2019). Trajectory convergence from coordinate-wise decrease of quadratic energy functions, and applications to platoons. IEEE Control Systems Letters, 4(1), 151-156.

[429] Hennig, J. L. (2021). Labor Market Polarization and Intergenerational Mobility: Theory and Evidence.

[430] Henriquez, M., Reniers, A. J. H. M., Ruessink, B. G., & Stive, M. J. F. (2014). PIV measurements of the bottom boundary layer under nonlinear surface waves. Coastal Engineering, 94, 33-46.

[431] Herdağdelen, A., & Alpaydın, E. (2004, June). Dynamic alignment distance based online signature verification. In The 13th Turkish Symposium on Artificial Intelligence & Artificial Neural Networks (pp. 10-11).

[432] Herrera, H., Morelli, M., & Nunnari, S. (2016). Turnout across democracies. American Journal of Political Science, 60(3), 607-624.

[433] Higgins, C. M., & Koch, C. (2000). A modular multi-chip neuromorphic architecture for real-time visual motion processing. Analog Integrated Circuits and Signal Processing, 24(3), 195-211.

[434] Hill, D. L., Bhowmick, A. K., Ilyin, D. V., & Abarzhi, S. I. (2019). Group theory analysis of early-time scale-dependent dynamics of the Rayleigh-Taylor instability with time varying acceleration. Physical Review Fluids, 4(6), 063905.

[435] Hinton, G., Srivastava, N., & Swersky, K. (2012). Neural networks for machine learning. Coursera, video lectures, 264(1), 2146-2153.

[436] Ho, C. L. (2020). Fractional Fokker-Planck equations for subdiffusion and exceptional orthogonal polynomials. arXiv preprint arXiv:2004.13020.

[437] Ho, J. C., Hoang, V. N., & Wilson, C. (2021). Government R&D subsidies and international competitiveness of labor-managed firms. Heliyon, 7(2), e06054.

[438] Ho, T. A., Thanh, T. D., Ho, T. O., Phan, M. H., Phan, T. L., & Yu, S. C. (2015). Magnetic properties and magnetocaloric effect in Fe-doped La0. 6Ca0. 4MnO3 with short-range ferromagnetic order. Journal of Applied Physics, 117(17), 17A724.

[439] Hoelck, J., Nendzig, F., & Wolschin, G. (2017). Magnetic Field Effects on In-Medium \Upsilon Dissociation. In EPJ Web of Conferences (Vol. 164, p. 08004). EDP Sciences.

[440] Hoffmann, M., & Rota‐Graziosi, G. (2020). Endogenous timing in the presence of non‐monotonicities. Canadian Journal of Economics/Revue canadienne d’économique, 53(1), 359-402.

[441] Holen, Ø. H., & Sherratt, T. N. (2021). Coping with danger and deception: lessons from signal detection theory. The American Naturalist, 197(2), 147-163.

[442] Holleman, J., Mishra, A., Diorio, C., & Otis, B. (2008, September). A micro-power neural spike detector and feature extractor in. 13μm CMOS. In 2008 IEEE Custom Integrated Circuits Conference (pp. 333-336). IEEE.

[443] Holleman, J., Zhang, F., & Otis, B. (2011). Ultra low-power integrated circuit design for wireless neural interfaces. Berlin: Springer.

[444] Hollestelle, H. H. (2021). Some Results for a Time Interval Approach to Field Theory and Gravitation.

[445] Holmén, V. (2012). Methods for vortex identification. Master’s Theses in Mathematical Sciences.

[446] Holzhauser, M., & Krumke, S. O. (2017). An FPTAS for the parametric knapsack problem. Information Processing Letters, 126, 43-47.

[447] Horng, J. H., & Li, J. T. (2002). Vehicle path planning by using adaptive constrained distance transformation. Pattern Recognition, 35(6), 1327-1337.

[448] Houriez, S., Bollache, E., Soulat, G., Alattar, Y., Lamy, J., Dietenbeck, T., … & Kachenoura, N. (2018, September). Evaluation of Left Ventricular Diastolic Function Using 4D Flow MR Imaging. In 2018 Computing in Cardiology Conference (CinC) (Vol. 45, pp. 1-4). IEEE.

[449] Hu, G., Wu, L., Deng, Y., Yu, L., & Luo, B. (2021, August). Damping Performance Analysis of Magnetorheological Damper Based on Multiphysics Coupling. In Actuators (Vol. 10, No. 8, p. 176). Multidisciplinary Digital Publishing Institute.

[450] Hu, Z., Cho, S., Wang, J., & Yang, M. H. (2014). Deblurring low-light images with light streaks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (pp. 3382-3389).

[451] Huang, J., Xia, J. S., Tsui, D. C., Pfeiffer, L. N., & West, K. W. (2007). Disappearance of metal-like behavior in GaAs two-dimensional holes below 30 mK. Physical review letters, 98(22), 226801.

[452] Huang, S. J., & Huang, C. L. (2000). Control of an inverted pendulum using grey prediction model. IEEE transactions on industry applications, 36(2), 452-458.

[453] Huang, S., Sun, J., Yang, Y., Fang, Y., & Lin, P. (2017). Multi-frame super-resolution reconstruction based on gradient vector flow hybrid field. IEEE Access, 5, 21669-21683.

[454] Huang, W., & Yin, H. (2017). Robust face recognition with structural binary gradient patterns. Pattern Recognition, 68, 126-140.

[455] Hubara, I., Courbariaux, M., Soudry, D., El-Yaniv, R., & Bengio, Y. (2017). Quantized neural networks: Training neural networks with low precision weights and activations. The Journal of Machine Learning Research, 18(1), 6869-6898.

[456] Hull, C. J., Raj, S. L., & Saykally, R. J. (2020). The liquid state of carbon. Chemical Physics Letters, 749, 137341.

[457] Hussain, I., Anwar, M. S., Khan, S. N., Shahee, A., Rehman, Z. U., & Koo, B. H. (2017). Magnetocaloric effect and magnetic properties of the isovalent Sr2+ substituted Ba2FeMoO6 double perovskite. Ceramics International, 43(13), 10080-10088.

[458] Hutchinson, I. H., & Malaspina, D. M. (2018). Prediction and observation of electron instabilities and phase space holes concentrated in the lunar plasma wake. Geophysical Research Letters, 45(9), 3838-3845.

[459] Hyland, D., Van Kampen, P., & Nolan, B. (2021). Introducing direction fields to students learning ordinary differential equations (ODEs) through guided inquiry. International Journal of Mathematical Education in Science and Technology, 52(3), 331-348.

[460] Hyndman, K. (2021). Dissolving partnerships under risk: An experimental investigation. Journal of Economic Behavior & Organization, 185, 702-720.

[461] Iagnemma, K., Morel, G., & Dubowsky, S. (1997). A model-free fine position control method using the base-sensor: With application to a hydraulic manipulator. IFAC Proceedings Volumes, 30(20), 339-345.

[462] Igel, C., & Hüsken, M. (2003). Empirical evaluation of the improved Rprop learning algorithms. Neurocomputing, 50, 105-123.

[463] Ikram, M., Purwanto, P., Parta, I. N., & Susanto, H. (2020). Mathematical Reasoning Required when Students Seek the Original Graph from a Derivative Graph. Acta Scientiae, 22(6), 45-64.

[464] Ilan, R., Cooper, N. R., & Stern, A. (2006). Longitudinal resistance of a quantum Hall system with a density gradient. Physical Review B, 73(23), 235333.

[465] Impullitti, G., & Licandro, O. (2018). Trade, firm selection and innovation: The competition channel. The Economic Journal, 128(608), 189-229.

[466] Inghirami, G., Mace, M., Hirono, Y., Del Zanna, L., Kharzeev, D. E., & Bleicher, M. (2020). Magnetic fields in heavy ion collisions: flow and charge transport. The European Physical Journal C, 80(3), 1-26.

[467] Ingraham, J., Riesselman, A., Sander, C., & Marks, D. (2018, September). Learning protein structure with a differentiable simulator. In International Conference on Learning Representations.

[468] Inoue, A. (2002). Identifying the sign of the slope of a monotonic function via OLS. Economics Letters, 75(3), 419-424.

[469] Ishibashi, R. (2020). The Effect of Programming on Students’ Understanding of Mathematics (Doctoral dissertation).

[470] Ishikawa, T., Matsumoto, A., & Szidarovszky, F. (2017). Stability Regions for a Delay Cobweb Model.

[471] Ishitsubo, T., Akizuki, S., Mizuno, M., Sekimoto, M., & Sadao Kawamura. (2009, May). 2A1-G04 Experimental study on motion control of articulated robots based on basal motion synthesis. In Robotics and Mechatronics Lecture Lecture Summary 2009 (pp. _2A1-G04_1). General Incorporated Association Japan Mechanical Society.

[472] Ismail, M. I., & Ferguson, N. S. (2017). Passive shock isolation utilising dry friction. Shock and Vibration, 2017.

[473] Ito, M. (2007). Cosmological solutions for a model with a 1/H2 term. Journal of Cosmology and Astroparticle Physics, 2007(03), 009.

[474] Itskovits, E., Ruach, R., Kazakov, A., & Zaslaver, A. (2018). Concerted pulsatile and graded neural dynamics enables efficient chemotaxis in C. elegans. Nature communications, 9(1), 1-11.

[475] Ivanjek, L., Susac, A., Planinic, M., Andrasevic, A., & Milin-Sipus, Z. (2016). Student reasoning about graphs in different contexts. Physical Review Physics Education Research, 12(1), 010106.

[476] Iverson, R. M., & George, D. L. (2019). Basal stress equations for granular debris masses on smooth or discretized slopes. Journal of Geophysical Research: Earth Surface, 124(6), 1464-1484.

[477] Ivorra, E., Amat, S. V., Sánchez, A. J., Barat, J. M., & Grau, R. (2014). Continuous monitoring of bread dough fermentation using a 3D vision Structured Light technique. Journal of Food Engineering, 130, 8-13.

[478] Jacobs, R. A. (1988). Increased rates of convergence through learning rate adaptation. Neural networks, 1(4), 295-307.

[479] Jadżyn, J., & Czechowski, G. (2007). Interactions and dynamics of mesogenic molecules in the vicinity of the isotropic to nematic phase transition. Journal of Molecular Structure, 844, 59-63.

[480] Jamshidpour, E., Poure, P., & Saadate, S. (2015). Photovoltaic systems reliability improvement by real-time FPGA-based switch failure diagnosis and fault-tolerant DC–DC converter. IEEE Transactions on Industrial Electronics, 62(11), 7247-7255.

[481] Jarlebring, E., & Michiels, W. (2010). Invariance properties in the root sensitivity of time-delay systems with double imaginary roots. Automatica, 46(6), 1112-1115.

[482] Jebri, B., Phillips, M., Knapp, K., Appelboam, A., Reuben, A., & Slabaugh, G. (2015, March). Detection of degenerative change in lateral projection cervical spine x-ray images. In Medical Imaging 2015: Computer-Aided Diagnosis (Vol. 9414, p. 941404). International Society for Optics and Photonics.

[483] Jeddi, M., Gharsallah, H., Bekri, M., Dhahri, E., & Hlil, E. K. (2020). Improvement of magnetocaloric properties around room temperature in (1− x) La0. 6Ca0. 4MnO3/(x) La0. 6Sr0. 4MnO3 (0≤ x≤ 1) composite system. Phase Transitions, 93(3), 311-322.

[484] Jeon, H. (2014). Three essays on environmental economics (Doctoral dissertation, Iowa State University).

[485] Jeong, I. J., & Kim, S. C. (2020). On stationary solutions and inviscid limits for generalized Constantin–Lax–Majda equation with O (1) forcing. Nonlinearity, 33(12), 6662.

[486] Jermyn, A. S., Lesaffre, P., Tout, C. A., & Chitre, S. M. (2018). Turbulence closure for mixing length theories. Monthly Notices of the Royal Astronomical Society, 476(1), 646-662.

[487] Jerome, J. W. (2009). Steady Euler–Poisson systems: A differential/integral equation formulation with general constitutive relations. Nonlinear Analysis: Theory, Methods & Applications, 71(12), e2188-e2193.

[488] Jex, M. (2010). Geometrically induced properties od the ground state of point-interaction Hamiltonians.

[489] Jia, J., Liu, J., Liu, X., Mo, Z., Pang, X., Wang, Y., & Yang, N. (2018). Existence and stability of circular orbits in general static and spherically symmetric spacetimes. General Relativity and Gravitation, 50(2), 1-20.

[490] Jin, K., Velisa, G., Xue, H., Yang, T., Bei, H., Weber, W. J., … & Zhang, Y. (2019). Channeling analysis in studying ion irradiation damage in materials containing various types of defects. Journal of Nuclear Materials, 517, 9-16.

[491] Jin, M., Kang, S. H., Chang, P. H., & Lee, J. (2017). Robust control of robot manipulators using inclusive and enhanced time delay control. IEEE/ASME Transactions on Mechatronics, 22(5), 2141-2152.

[492] Jordan, J. R., & Bovik, A. C. (1988). Computational stereo vision using color. IEEE Control systems magazine, 8(3), 31-36.

[493] Jouvet, P. A., Le Cadre, E., & Orset, C. (2012). Irreversible investment, uncertainty, and ambiguity: The case of bioenergy sector. Energy economics, 34(1), 45-53.

[494] Joy, T. T., Rana, S., Gupta, S., & Venkatesh, S. (2020). Fast hyperparameter tuning using Bayesian optimization with directional derivatives. Knowledge-Based Systems, 205, 106247.

[495] Ju, C., Geller, F. C., Mundinger, P. C., & Lahti, D. C. (2019). Four decades of cultural evolution in House Finch songs. The Auk: Ornithological Advances, 136(1), uky012.

[496] Jung, H. J., Jang, D. D., Cho, S. W., & Koo, J. H. (2009, February). Experimental verification of sensing capability of an electromagnetic induction system for an MR fluid damper-based control system. In Journal of Physics: Conference Series (Vol. 149, No. 1, p. 012058). IOP Publishing.

[497] Justo, N. L., & Guillermina, M. P. (2018). LIII Reunión Anual.

[498] Juuso, E. K. (2018, March). Intelligent trend analysis for a solar thermal energy collector field. In IOP Conference Series: Earth and Environmental Science (Vol. 136, No. 1, p. 012007). IOP Publishing.

[499] Juuso, E., & Lahdelma, S. (2011, June). Intelligent trend indices and recursive modelling in prognostics. In Proceedings The 8th International Conference on Condition Monitoring and Machinery Failure Prevention Technologies (pp. 20-22).

[500] Kachenoura, N., Bollache, E., Redheuil, A., Clément-Guinaudeau, S., Perdrix, L., Diebold, B., … & Mousseaux, E. (2015, September). Right ventricular diastolic function evaluation in magnetic resonance imaging. In 2015 Computing in Cardiology Conference (CinC) (pp. 89-92). IEEE.

[501] Kacperczyk, M., Van Nieuwerburgh, S., & Veldkamp, L. (2009). Rational attention allocation over the business cycle (No. w15450). National Bureau of Economic Research.

[502] Kafka, D., & Wilke, D. (2019). Gradient-only line searches: An alternative to probabilistic line searches. arXiv preprint arXiv:1903.09383.

[503] Kafka, D., & Wilke, D. (2019). Traversing the noise of dynamic mini-batch sub-sampled loss functions: A visual guide. arXiv preprint arXiv:1903.08552.

[504] Kafka, D., & Wilke, D. N. (2020). Gradient-only line searches to automatically determine learning rates for a variety of stochastic training algorithms. arXiv preprint arXiv:2007.01054.

[505] Kafka, D., & Wilke, D. N. (2021). Resolving learning rates adaptively by locating stochastic non-negative associated gradient projection points using line searches. Journal of Global Optimization, 79(1), 111-152.

[506] Kalabušić, S., Nurkanović, M., & Nurkanović, Z. (2018). Global dynamics of certain mix monotone difference equation. Mathematics, 6(1), 10.

[507] Kan, K., Fung, S. W., & Ruthotto, L. (2021). PNKH-B: A Projected Newton–Krylov Method for Large-Scale Bound-Constrained Optimization. SIAM Journal on Scientific Computing, (0), S704-S726.

[508] Kansou, K., Della Valle, G., & Ndiaye, A. (2011, September). From expert knowledge to qualitative functions: application to the mixing process. In 10. International Conference on Modeling and Applied Simulation (p. np).

[509] Karami, H., Ghasemi, R., & Mohammadi, F. (2019, October). Adaptive neural observer-based nonsingular terminal sliding mode controller design for a class of nonlinear systems. In 2019 6th International Conference on Control, Instrumentation and Automation (ICCIA) (pp. 1-5). IEEE.

[510] KARCOL, R., & PAŠTEKA, R. (2020). Normal vs. reverse fault–the example of curvature’s usage on gravimetric data. Contributions to Geophysics and Geodesy, 50(4), 447-461.

[511] KARTAL, Ö. F. (2019). Mathematical thinking in the classroom on derivative: fostering university students’ mathematical thinking (Doctoral dissertation, MIDDLE EAST TECHNICAL UNIVERSITY).

[512] Karimi, H., Nutini, J., & Schmidt, M. (2016, September). Linear convergence of gradient and proximal-gradient methods under the polyak-łojasiewicz condition. In Joint European Conference on Machine Learning and Knowledge Discovery in Databases (pp. 795-811). Springer, Cham.

[513] Karuppiah Ramachandran, V. R., Alblas, H. J., Le, D. V., & Meratnia, N. (2018). Towards an online seizure advisory system—an adaptive seizure prediction framework using active learning heuristics. Sensors, 18(6), 1698.

[514] Kashiwagi, M. (2014). Derivative of a Determinant with Respect to an Eigenvalue in the Modified Cholesky Decomposition of a Symmetric Matrix, with Applications to Nonlinear Analysis. American Journal of Computational Mathematics, 2014.

[515] Kasis, A., Monshizadeh, N., & Lestas, I. (2021). Primary frequency regulation in power grids with on–off loads: Chattering, limit cycles and convergence to optimality. Automatica, 131, 109736.

[516] Kaya, Y., Kocakaplan, S., & Şafak, E. (2015). System identification and model calibration of multi-story buildings through estimation of vibration time histories at non-instrumented floors. Bulletin of Earthquake Engineering, 13(11), 3301-3323.

[517] Kazakov, A. I., Shapovalov, G. V., & Moskvin, P. P. (2019). Computer simulation for formation of critical spaces in II–VI solid solutions. Journal of Crystal Growth, 506, 201-205.

[518] Kazez, W. H., & Roberts, R. (2015). Approximating C1, 0–foliations. Geometry & Topology Monographs, 19(1), 21-72.

[519] Kebede, G. G., Mitev, P. D., Briels, W. J., & Hermansson, K. (2018). Red-shifting and blue-shifting OH groups on metal oxide surfaces–towards a unified picture. Physical chemistry chemical physics, 20(18), 12678-12687.

[520] Kejlberg, S. (2018). The Effects of Economic Variables on Swedish Stock Market Volatility A GARCH-MIDAS Approach. Kemmerling, A., & Neugart, M. (2017). The emergence of redistributive pensions in the developing world. Available at SSRN 2916086.

[521] Kemmerling, A., & Neugart, M. (2019). Redistributive pensions in the developing world. Review of Development Economics, 23(2), 702-726.

[522] Khademvatani, A. (2009). Measuring energy efficiency in economics: Shadow value approach. University of Calgary, Department of Economics.

[523] Khansari, M. M., O’Neill, W., Lim, J., & Shahidi, M. (2017). Method for quantitative assessment of retinal vessel tortuosity in optical coherence tomography angiography applied to sickle cell retinopathy. Biomedical optics express, 8(8), 3796-3806.

[524] Khodapanah, B., Awada, A., Viering, I., Barreto, A. N., Simsek, M., & Fettweis, G. (2019, May). Slice management in radio access network via iterative adaptation. In ICC 2019-2019 IEEE International Conference on Communications (ICC) (pp. 1-7). IEEE.

[525] Kiefer, B., Furlan, T., & Mosler, J. (2017). A numerical convergence study regarding homogenization assumptions in phase field modeling. International Journal for Numerical Methods in Engineering, 112(9), 1097-1128.

[526] Kikuuwe, R. (2018). Some stability proofs on proxy-based sliding mode control. IMA Journal of Mathematical Control and Information, 35(4), 1319-1341.

[527] Killi, M., & Samanta, S. (2015). Modified perturb and observe MPPT algorithm for drift avoidance in photovoltaic systems. IEEE transactions on Industrial Electronics, 62(9), 5549-5559.

[528] Kim, J. (2012). Endogenous vehicle-type choices in a monocentric city. Regional Science and Urban Economics, 42(4), 749-760.

[529] Kim, J., Bates, D. G., Postlethwaite, I., Heslop-Harrison, P., & Cho, K. H. (2008). Linear time-varying models can reveal non-linear interactions of biomolecular regulatory networks using multiple time-series data. Bioinformatics, 24(10), 1286-1292.

[530] Kim, S. W., & Nam, K. (2003, July). The Middle Generations Saves More: Analytical Approach with Habit Formation in Three Generation Overlapping Generations Economy. In The 2003 KDI-KAEA Conference on “Aging Population, Emerging China, and Sustainable Growth in Korea” (p. 1).

[531] Kithinji, M. M., Mwita, P. N., & Kube, A. O. (2021). Adjusted Extreme Conditional Quantile Autoregression with Application to Risk Measurement. Journal of Probability and Statistics, 2021.

[532] Kłos, J., & Puszkarski, H. (2003). Conditions of coexistence of Tamm and Shockley states in a superlattice with a perturbed surface. Physical Review B, 68(4), 045316.

[533] Ko, M. C., & Lee, S. (2015). Corporate Debt Dynamics, Capital Accumulation, and Macroeconomic Instability: A Post-Keynesian Analysis. The Korean Economic Review, 31(1), 177-197.

[534] Kocherlakota, N. R. (2021). Public debt bubbles in heterogeneous agent models with tail risk (No. w29138). National Bureau of Economic Research.

[535] Kofanov, V. A. (2003). On Kolmogorov-type inequalities taking into account the number of changes in the sign of derivatives. Ukrainian Mathematical Journal, 55(4), 548-565.

[536] Koike, K. I., & Shimegi, Y. (2018). On Log-q-Gaussian Distribution. Calcutta Statistical Association Bulletin, 70(2), 105-121. Koiso, N. (1979). On the second derivative of the total scalar curvature. Osaka Journal of Mathematics, 16(2), 413-421.

[537] Kolossváry, I. (1999). On the Sign of Local Temperature in Molecules. Entropy, 1(1), 4-8.

[538] Kolter, J. Z. (2010). Learning and control with inaccurate models. Stanford University.

[539] Kolter, J. Z., & Ng, A. Y. (2009, June). Policy search via the signed derivative. In Robotics: science and systems (Vol. 5).

[540] Koma, Y., Ilgenfritz, E. M., Koller, K., Koma, M., Schierholz, G., Streuer, T., & Weinberg, V. (2010). Momentum dependence of the topological susceptibility with overlap fermions. arXiv preprint arXiv:1012.1383.

[541] Kong, X., Xin, B., Wang, Y., & Hua, G. (2017). Collaborative deep reinforcement learning for joint object search. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (pp. 1695-1704).

[542] Konoplev, I. V., De Boer, D. P., Warsop, C. M., & John, M. (2020). Design and characterisation of frequency selective conductive materials for electromagnetic fields control. Scientific Reports, 10(1), 1-12.

[543] Korzeniowski, R., & Pluta, J. (2008). Investigation of transient states of the hydraulic power unit cooperating with the servovalve.

[544] Kostić, V., & Sekulić, T. (2014). Extreme Values of Function in GeoGebra Style. VisMath.

[545] Kostik, R., & Khomenko, E. V. (2012). Properties of convective motions in facular regions. Astronomy & Astrophysics, 545, A22.

[546] Kostik, R., Khomenko, E., & Shchukina, N. (2009). Solar granulation from photosphere to low chromosphere observed in Ba II 4554 Å line. Astronomy & Astrophysics, 506(3), 1405-1414.

[547] Kotani, M. Regulation FD, Analysts’ Information Acquisition, and the Public Goods Problem. JFMRA, 23.

[548] Kotsialos, A. (2019). Constrained nonlinear optimisation using resilient backpropagation as search method. In Proc. of 8th Intern. Symp. and 30th National Conf. on Operational Research (pp. 81-84).

[549] Kourov, N. I., Marchenkov, V. V., Korolev, A. V., Stashkova, L. A., Emel’yanova, S. M., & Weber, H. W. (2015). Specific features of the properties of half-metallic ferromagnetic Heusler alloys Fe 2 MnAl, Fe 2 MnSi, and Co 2 MnAl. Physics of the Solid State, 57(4), 700-708.

[550] Kovyrkina, O. A., & Ostapenko, V. V. (2019, July). The problem about a symmetric convex body that is lifted from shallow water. In Journal of Physics: Conference Series (Vol. 1268, No. 1, p. 012034). IOP Publishing.

[551] Kraft, H., & Weiss, F. (2019). Consumption-portfolio choice with preferences for cash. Journal of Economic Dynamics and Control, 98, 40-59.

[552] Krenn, P. (2017). The impact of taxes on competition for CEOs. European Accounting Review, 26(3), 503-530.

[553] Kubler, F., Selden, L., & Wei, X. (2011). Theory of Inverse Demand: Financial Assets. Columbia Business School Research Paper, (12-12).

[554] Kucher, A. P. (2019). Health Behaviors and Prevention within the Family.

[555] Kudlinski, A., Quiquempois, Y., Zeghlache, H., & Martinelli, G. (2003). Evidence of second-order nonlinear susceptibility sign reversal in thermally poled samples. Applied physics letters, 83(16), 3242-3244.

[556] Kudryavtsev, A. V., Dembélé, S., & Piat, N. (2017). Autofocus on moving object in scanning electron microscope. Ultramicroscopy, 182, 216-225.

[557] Kumar, N., Bhattacharyya, S., & Gangopadhyay, S. (2020). Phase transitions in Born-Infeld AdS black holes in D-dimensions. General Relativity and Gravitation, 52(2), 1-21.

[558] Kurakin, A., Goodfellow, I., & Bengio, S. (2016). Adversarial examples in the physical world.

[559] Kurd, Z. (2005). Artificial neural networks in safety-critical applications (Doctoral dissertation, University of York).

[560] Kurd, Z., & Kelly, T. P. (2007). Using fuzzy self-organising maps for safety critical systems. Reliability Engineering & System Safety, 92(11), 1563-1583.

[561] Kurowski, P., Szelag, K., Zaluski, W., & Sitnik, R. (2018). Accurate ball tracking in volleyball actions to support referees. Opto-Electronics Review, 26(4), 296-306.

[562] Kustanovich, Z., & Weiss, G. (2018, December). Synchronverter based photovoltaic inverter. In 2018 IEEE International Conference on the Science of Electrical Engineering in Israel (ICSEE) (pp. 1-5). IEEE.

[563] Kuzikov, S. V., Savilov, A. V., & Vikharev, A. A. (2014). Flying radio frequency undulator. Applied Physics Letters, 105(3), 033504.

[564] Kuznetsov, A., & Myasnikov, V. (2017). A new copy-move forgery detection algorithm using image preprocessing procedure. Procedia engineering, 201, 436-444.

[565] Kuznetsov, E. A., Passot, T., Ruban, V. P., & Sulem, P. L. (2015). Steady mirror structures in a plasma with pressure anisotropy. arXiv preprint arXiv:1501.07702.

[566] Lafforgue, G., & Rouge, L. (2019). A dynamic model of recycling with endogenous technological breakthrough. Resource and Energy Economics, 57, 101-118.

[567] Lafond, J., Wai, H. T., & Moulines, E. (2015). On the online Frank-Wolfe algorithms for convex and non-convex optimizations. arXiv preprint arXiv:1510.01171.

[568] Lahmdani, A., & Tifroute, M. (2021). A Smoothing Sequential Convex Programming Method. Applied Mathematical Sciences, 15(1), 33-45.

[569] Lanaspa, L. F., Pueyo, F., & Sanz, F. (2001). The public sector and core-periphery models. Urban Studies, 38(10), 1639-1649.

[570] Lancaster, Z. (2018). Information Theory as a Measure of Sociodemographic Change. Lancastre, M. (2017). Redistributive Tax Policy at the Zero Bound.

[571] Laporte, A. (2015). Should the Grossman model of investment in health capital retain its iconic status. Canadian Centre for Health Economics, University of Toronto.

[572] Lazutkin, G. V., Davydov, D. P., Varzhitskiy, L. A., Boyarov, K. V., & Volkova, T. V. (2017). Non-linear oscillations of mechanical systems with structure damping vibration protection devices. Procedia Engineering, 176, 334-343.

[573] Le Phong, T., & Phuong, T. T. (2020). Distributed SignSGD With Improved Accuracy and Network-Fault Tolerance. IEEE Access, 8, 191839-191849.

[574] Ledenev, V. G., Tirsky, V. V., & Tomozov, V. M. (2007). High-frequency waves in solar and stellar coronae. Astronomy & Astrophysics, 463(3), 1165-1170.

[575] Lee, J. Y., & Park, R. H. (2017). Depth estimation from light field by accumulating binary maps based on foreground–background separation. IEEE Journal of Selected Topics in Signal Processing, 11(7), 955-964.

[576] Lee, S. K., Pelegri, J. L., & Kroll, J. (2001). Slope control in western boundary currents. Journal of physical oceanography, 31(11), 3349-3360.

[577] Lee, W., Kim, K., Jeong, W., Zotti, L. A., Pauly, F., Cuevas, J. C., & Reddy, P. (2013). Heat dissipation in atomic-scale junctions. Nature, 498(7453), 209-212.

[578] Lei, B., Lu, W., Zhu, C., Liu, Q., & Zhang, H. (2014). A novel optimal sensitivity design scheme for yarn tension sensor using surface acoustic wave device. Ultrasonics, 54(6), 1649-1655.

[579] Lein, M., & Sato, K. (2019). The Krein-Schrodinger Formalism of Bosonic BdG and Certain Classical Systems and Their Topological Classification. arXiv preprint arXiv:1903.06354.

[580] Leung, T., Li, J., Li, X., & Wang, Z. (2016). Speculative futures trading under mean reversion. Asia-Pacific Financial Markets, 23(4), 281-304.

[581] Levant, A. (2010). Chattering analysis. IEEE transactions on automatic control, 55(6), 1380-1389.

[582] Levermann, A., Mignot, J., Nawrath, S., & Rahmstorf, S. (2007). The role of northern sea ice cover for the weakening of the thermohaline circulation under global warming. Journal of Climate, 20(16), 4160-4171.

[583] Levy, I., Youmans, C., Garcia, T. A., Deng, H., Alsheimer, S., Testelin, C., … & Tamargo, M. C. (2020). Designer Topological Insulator with Enhanced Gap and Suppressed Bulk Conduction in Bi2Se3/Sb2Te3 Ultrashort-Period Superlattices. Nano letters, 20(5), 3420-3426.

[584] Lewis, G. F., & Barnes, L. A. (2021). The one-way speed of light and the Milne universe. Publications of the Astronomical Society of Australia, 38.

[585] Leyva, R., Alonso, C., Queinnec, I., Cid-Pastor, A., Lagrange, D., & Martinez-Salamero, L. (2006). MPPT of photovoltaic systems using extremum-seeking control. IEEE transactions on aerospace and electronic systems, 42(1), 249-258.

[586] Li, C., Rana, S., Gupta, S., Nguyen, V., & Venkatesh, S. (2017). Bayesian optimization with monotonicity information. In Workshop on Bayesian optimization at neural information processing systems (NIPSW).

[587] Li, C., Rana, S., Gupta, S., Nguyen, V., Venkatesh, S., Sutti, A., … & Gibson, I. (2019). Accelerating experimental design by incorporating experimenter hunches. arXiv preprint arXiv:1907.09065.

[588] Li, D., Wu, H., Zhang, J., & Huang, K. (2018). A2-RL: Aesthetics aware reinforcement learning for image cropping. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (pp. 8193-8201).

[589] Li, J., Ueda, K. I., Dong, J., Musha, M., & Shirakawa, A. (2006). Maximum value of the pulse energy of a passively Q-switched laser as a function of the pump power. Applied optics, 45(21), 5377-5384.

[590] Li, K., Zhang, J., & Zhang, L. (2021). Optimal Software Feature-Limited Freemium Model Design: A New Consumer Learning Theoretical Framework. Mathematics, 9(9), 944.

[591] Li, P., & Jiang, Z. (2018). Bifurcation Analysis of Stick-Slip Motion of the Vibration-Driven System with Dry Friction. Mathematical Problems in Engineering, 2018.

[592] Li, S., Ozkan Aydin, Y., Xiao, C., Small, G., Gynai, H. N., Li, G., … & Goldman, D. I. (2020). Field-mediated locomotor dynamics on highly deformable surfaces. arXiv e-prints, arXiv-2004.

[593] Li, W., & Wang, X. (2013). Locally aligned feature transforms across views. In Proceedings of the IEEE conference on computer vision and pattern recognition (pp. 3594-3601).

[594] Li, X., Lin, K. Y., Li, L., Hong, Y., & Chen, J. (2021). On Faster Convergence of Scaled Sign Gradient Descent. arXiv preprint arXiv:2109.01806.

[595] Liao, J. (2021). Essays on the demand for caffeinated beverages (Doctoral dissertation).

[596] Lima, R., & Sampaio, R. (2016). A stochastic analysis of the trajectories of a dry-friction oscillator in a belt: how much sticked and slipping?. Proceeding Series of the Brazilian Society of Computational and Applied Mathematics, 4(1).

[597] Lima, R., & Sampaio, R. (2017). Construction of a statistical model for the dynamics of a base-driven stick-slip oscillator. Mechanical Systems and Signal Processing, 91, 157-166.

[598] Lin, J., Xu, L., Liu, Y., & Zhang, X. (2020). Black-box adversarial sample generation based on differential evolution. Journal of Systems and Software, 170, 110767.

[599] Lippi, F., Ragni, S., & Trachter, N. (2014). State dependent monetary policy.

[600] Liu, L., Shao, L., Shen, F., & Yu, M. (2017). Discretely coding semantic rank orders for supervised image hashing. In Proceedings of the IEEE conference on computer vision and pattern recognition (pp. 1425-1434).

[601] Liu, S., Xu, Q., & Zhang, P. (2005). Identifying Doppler velocity contamination caused by migrating birds. Part II: Bayes identification and probability tests. Journal of Atmospheric and Oceanic Technology, 22(8), 1114-1121.

[602] Liu, W., & Röckner, M. (2010). SPDE in Hilbert space with locally monotone coefficients. Journal of Functional Analysis, 259(11), 2902-2922.

[603] Löffler, G., & Raupach, P. (2018). Pitfalls in the use of systemic risk measures. Journal of Financial and Quantitative Analysis, 53(1), 269-298.

[604] Loignon-Houle, F., Gundacker, S., Toussaint, M., Lemyre, F. C., Auffray, E., Fontaine, R., … & Lecomte, R. (2021). DOI estimation through signal arrival time distribution: a theoretical description including proof of concept measurements. Physics in Medicine & Biology, 66(9), 095015.

[605] Loizos, D. N., Sotiriadis, P. P., & Cauwenberghs, G. (2008, May). Adaptive delay compensation in multi-dithering adaptive control. In 2008 IEEE International Symposium on Circuits and Systems (pp. 2182-2185). IEEE.

[606] Loizos, D. N., Sotiriadis, P. P., & Cauwenberghs, G. (2009). A SiGe BiCMOS 8-Channel Multi-Dithering, Sub-Microsecond Adaptive Controller.

[607] Long, J. (2015). Non-Foster Circuit Loaded Periodic Structures for Broadband Fast and SlowWave Propagation. University of California, San Diego.

[608] Lu, Y. (2021). The Influence of Liquidity Information on Liquidity Holdings in the Banking System. Available at SSRN 3861204.

[609] Lumbreras, D., Barrios, E. L., Urtasun, A., Ursúa, A., Marroyo, L., & Sanchis, P. (2018). On the stability of advanced power electronic converters: The generalized bode criterion. IEEE Transactions on Power Electronics, 34(9), 9247-9262.

[610] Luppescu, G., Lowney, M., & Shah, R. Classification of Hand Gestures using Surface Electromyography Signals For Upper-Limb Amputees. Technical report, Stanford University. http://cs229. stanford. edu/proj2016spr/report/040. pdf.

[611] Lydia, A., & Francis, S. (2019). Adagrad—an optimizer for stochastic gradient descent. Int. J. Inf. Comput. Sci, 6(5).

[612] Ma, C., & Wu, L. (2020). A qualitative study of the dynamic behavior of adaptive gradient algorithms. arXiv preprint arXiv:2009.06125.

[613] Ma, X., Wijewickrema, S., Zhou, S., Zhou, Y., Mhammedi, Z., O’Leary, S., & Bailey, J. (2017). Adversarial generation of real-time feedback with neural networks for simulation-based training. arXiv preprint arXiv:1703.01460.

[614] Maciel, A., Guariento, D. C., & Molina, C. (2015). Cosmological black holes and white holes with time-dependent mass. Physical Review D, 91(8), 084043.

[615] Madden, P. (2006). Geographical separation of oligopolists can be very competitive. European Economic Review, 50(7), 1709-1728.

[616] Madry, A., Makelov, A., Schmidt, L., Tsipras, D., & Vladu, A. (2017). Towards deep learning models resistant to adversarial attacks. arXiv preprint arXiv:1706.06083.

[617] Mahara, S. S., & Bharath, B. N. (2021). Multi-task Federated Edge Learning (MtFEEL) in Wireless Networks. arXiv preprint arXiv:2108.02517.

[618] Maignan, A., & Scott, T. C. (2016). Fleshing out the generalized Lambert W function. ACM Communications in Computer Algebra, 50(2), 45-60.

[619] Maiora, J., & Grańa, M. (2011). A computer aided dignostic system for survival analysis after EVAR treatment of EVAR. Journal of Medical Informatics & Technologies, 18.

[620] Makarenkov, O., & Ortega, R. (2011). Asymptotic stability of forced oscillations emanating from a limit cycle. Journal of Differential Equations, 250(1), 39-52.

[621] Marcoa, J., & Goetzb, R. On the Social Organization of the Commons-An Analytical Framework. Marino, A. M. (2017). Firm Specific Human Capital Investment in an Agency Relationship. Available at SSRN 2964983.

[622] Marino, A. M. (2019). Design of firm‐specific training in an agency relationship: Who should take the initiative?. Managerial and Decision Economics, 40(2), 127-140.

[623] Mariotti, F., Dickson, M., Mumford, K., & Pena-Boquete, Y. (2016). Job insecurity within the household: Are Australian householders caring when it comes to risk sharing?. Australian Journal of Labour Economics, 19(2), 77-90.

[624] Marques, P. A., & Dias, J. M. B. (1999, June). Efficient detection and ground mapping of selected moving targets using sar raw-data. In IEEE 1999 International Geoscience and Remote Sensing Symposium. IGARSS’99 (Cat. No. 99CH36293) (Vol. 1, pp. 542-546). IEEE.

[625] Martemyanov, Y. P., & Matveenko, V. D. Economic Growth in a Network under Mutual Dependence of Agents. In Society 40 th Anniversary Workshop–FORS40 (p. 34).

[626] Martínez-Planell, R., Gaisman, M. T., & McGee, D. (2015). On students’ understanding of the differential calculus of functions of two variables. The Journal of Mathematical Behavior, 38, 57-86.

[627] Martini, M., Roux, S., Montagna, M., Pansu, R., Julien, C., Tillement, O., & Perriat, P. (2010). How gold inclusions increase the rate of fluorescein energy homotransfer in silica beads. Chemical Physics Letters, 490(1-3), 72-75.

[628] Martins Filho, H. P., & Guadagnini, P. H. (1999). Infrared vibrational intensities and polar tensors of CF3Br and CF3I. Journal of Molecular Structure: THEOCHEM, 464(1-3), 171-182.

[629] Martynowicz, P. (2021). Nonlinear Optimal-Based Vibration Control of a Wind Turbine Tower Using Hybrid vs. Magnetorheological Tuned Vibration Absorber. Energies, 14(16), 5145.

[630] Massaro, A., De Pellegrini, F., & Maggi, L. (2019, April). Optimal trunk-reservation by policy learning. In IEEE INFOCOM 2019-IEEE Conference on Computer Communications (pp. 127-135). IEEE.

[631] Mateos, J. H., Real, M. A., Reichl, C., Tonina, A., Wegscheider, W., Dietsche, W., & Arrachea, L. (2021). Thermoelectric cooling properties of a quantum Hall Corbino device. Physical Review B, 103(12), 125404.

[632] Matinnejad, R., Nejati, S., Briand, L. C., & Bruckmann, T. (2016, May). Automated test suite generation for time-continuous simulink models. In proceedings of the 38th International Conference on Software Engineering (pp. 595-606).

[633] Matsushima, N. (2017). Expanding distribution channels. Asia-Pacific Journal of Accounting & Economics, 24(3-4), 464-484.

[634] Maurya, M. R., Paritosh, P. K., Rengaswamy, R., & Venkatasubramanian, V. (2010). A framework for on-line trend extraction and fault diagnosis. Engineering Applications of Artificial Intelligence, 23(6), 950-960.

[635] Maurya, M. R., Rengaswamy, R., & Venkatasubramanian, V. (2007). A signed directed graph and qualitative trend analysis-based framework for incipient fault diagnosis. Chemical Engineering Research and Design, 85(10), 1407-1422.

[636] Mazurova, A. V. (2017). Defining optimal ways of Kharkiv’s social-economic development by component analysis. Вісник Харківського національного університету імені ВН Каразіна, cерія” Геологія. Географія. Екологія”, (47), 115-121.

[637] Mazzoleni, P., Pagani, E., & Perali, F. (2019). The curvature properties of social welfare functions (No. 493).

[638] McCloskey, S. (2014, September). Improved motion invariant deblurring through motion estimation. In European Conference on Computer Vision (pp. 75-89). Springer, Cham.

[639] McEwing, K. R., Fisher, J. P., & Zona, D. (2015). Environmental and vegetation controls on the spatial variability of CH 4 emission from wet-sedge and tussock tundra ecosystems in the Arctic. Plant and soil, 388(1), 37-52.

[640] McIntosh, B. S. (2003). Qualitative modelling with imprecise ecological knowledge: a framework for simulation. Environmental Modelling & Software, 18(4), 295-307.

[641] McPherson, I. J., Ash, P. A., Jones, L., Varambhia, A., Jacobs, R. M., & Vincent, K. A. (2017). Electrochemical CO oxidation at platinum on carbon studied through analysis of anomalous in situ IR spectra. The Journal of Physical Chemistry C, 121(32), 17176-17187.

[642] Meddah, K., Talha, M. K., Bahoura, M., & Zairi, H. (2019). FPGA-based system for heart rate monitoring. IET Circuits, Devices & Systems, 13(6), 771-782.

[643] Mehta, N. (2019). An economic approach to generalizing findings from regression-discontinuity designs. Journal of Human Resources, 54(4), 953-985.

[644] Melnikov, A. S., Kim, V. A., & Melnikov, A. A. (2020, February). Increasing efficiency of braking control algorithm for a two-wheeled motorcycle. In IOP Conference Series: Materials Science and Engineering (Vol. 760, No. 1, p. 012043). IOP Publishing.

[645] Melnikov, M. Y., Shashkin, A. A., Dolgopolov, V. T., Huang, S. H., Liu, C. W., Zhu, A. Y., & Kravchenko, S. V. (2020). Metallic state in a strongly interacting spinless two-valley electron system in two dimensions. Physical Review B, 101(4), 045302.

[646] Mende, F. F. (2012). New electrodynamics. Revolution in the modern physics. Kharkov, NTMT.

[647] Mendes, A. M. S. C. (1998, October). Forest owners’ associations as a case of joint production of public goods and private services: A game theoretical approach. In FORESEA Miyazaki 1998. Proceedings of the international symposium on global concerns for forest resource utilization—sustainable use and management (pp. 186-196).

[648] Mendonca, A. M., & Campilho, A. (2006). Segmentation of retinal blood vessels by combining the detection of centerlines and morphological reconstruction. IEEE transactions on medical imaging, 25(9), 1200-1213.

[649] Mendoza, E. G., & Rojas, E. (2019). Positive and normative implications of liability dollarization for sudden stops models of macroprudential policy. IMF Economic Review, 67(1), 174-214.

[650] Mink, F., Wolfrum, E., Maraschek, M., Zohm, H., Horváth, L., Laggner, F. M., … & Stroth, U. (2016). Toroidal mode number determination of ELM associated phenomena on ASDEX Upgrade. Plasma Physics and Controlled Fusion, 58(12), 125013.

[651] Mishin, V. M., Mishin, V. V., Lunyushkin, S. B., Wang, J. Y., & Moiseev, A. V. (2017). 27 August 2001 substorm: Preonset phenomena, two main onsets, field‐aligned current systems, and plasma flow channels in the ionosphere and in the magnetosphere. Journal of Geophysical Research: Space Physics, 122(5), 4988-5007.

[652] Miura, T. (2020). Polar tangential angles and free elasticae. arXiv preprint arXiv:2004.06497. Miyamoto, K. (2009). A New Approach to Estimating Tax Interactions in Fiscal Federalism. iscussion P.

[653] Miyoshi, H., & Tanishita, M. (2006). Economic Welfare and Public Policy Relating to Vehicle Information and Communication System in Japan.

[654] Moghari, M. H., Roujol, S., Henningsson, M., Kissinger, K. V., Annese, D., Nezafat, R., … & Powell, A. J. (2014). Three‐dimensional heart locator for whole‐heart coronary magnetic resonance angiography. Magnetic resonance in medicine, 71(6), 2118-2126.

[655] Mogliacci, S., Kolbé, I., & Horowitz, W. A. (2019, July). Phase transitions in finite size systems. In Journal of Physics: Conference Series (Vol. 1271, No. 1, p. 012022). IOP Publishing. Mohammed, S. (2016). Kinematic Motion Planning for a 7-AxisRobotic Arm (LWA70 by Schunk).

[656] Molignini, P., van Nieuwenburg, E., & Chitra, R. (2017). Sensing Floquet-Majorana fermions via heat transfer. Physical Review B, 96(12), 125144.

[657] Molina, V., Ceballos, G., & Dávila, H. (2013, September). ECG signal analysis using temporary dynamic sequence alignment. In Symposium of Signals, Images and Artificial Vision-2013: STSIVA-2013 (pp. 1-4). IEEE.

[658] Molnar, J., & Virág, G. (2008). Revenue maximizing auctions with market interaction and signaling. Economics Letters, 99(2), 360-363.

[659] Monkewitz, P. A. (2021). The late start of the mean velocity overlap log law at–a generic feature of turbulent wall layers in ducts. Journal of Fluid Mechanics, 910.

[660]

[661] Monniaux, D. (2007, August). Optimal abstraction on real-valued programs. In International Static Analysis Symposium (pp. 104-120). Springer, Berlin, Heidelberg.

[662] Montalbán, J. (2018). The role of performance incentives in need-based grants for higher education: Evidence from the Spanish Becas.

[663] Moosavi-Dezfooli, S. M., Fawzi, A., & Frossard, P. (2016). Deepfool: a simple and accurate method to fool deep neural networks. In Proceedings of the IEEE conference on computer vision and pattern recognition (pp. 2574-2582).

[664] Moosavi-Dezfooli, S. M., Fawzi, A., Uesato, J., & Frossard, P. (2019). Robustness via curvature regularization, and vice versa. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (pp. 9078-9086).

[665] Morel, G., & Dubowsky, S. (1996, April). The precise control of manipulators with joint friction: A base force/torque sensor method. In Proceedings of IEEE International Conference on Robotics and Automation (Vol. 1, pp. 360-365). IEEE.

[666] Morel, S., Dourado, N., & Valentin, G. (2005). Wood: a quasibrittle material R-curve behavior and peak load evaluation. International Journal of Fracture, 131(4), 385-400.

[667] Moreno Durán, J. L. (2016). Estimación de la edad de un cerebro mediante el análisis de imágenes de resonancia magnética funcional.

[668] Moreno-Barrado, A., Castro, M., Muñoz-García, J., & Cuerno, R. (2015). Stress vs sputtering effects in the propagation of surface ripples produced by ion-beam sputtering. Nuclear Instruments and Methods in Physics Research Section B: Beam Interactions with Materials and Atoms, 365, 13-16.

[669] Morgan, L. (2020). Quantifying the Dynamics of Topological Defects in Active Nematics (Doctoral dissertation, University of California Santa Barbara).

[670] Mori, D., & Nakashima, M. (2020). Simulation Model of Flip Turn in Swimming. In Multidisciplinary Digital Publishing Institute Proceedings (Vol. 49, No. 1, p. 165).

[671] Moulay, E., Léchappé, V., & Plestan, F. (2019). Properties of the sign gradient descent algorithms. Information Sciences, 492, 29-39.

[672] Mousavi, A., Maleki, A., & Baraniuk, R. G. (2018). Consistent parameter estimation for LASSO and approximate message passing. The Annals of Statistics, 46(1), 119-148.

[673] Moussi, E. H., Bellizzi, S., Cochelin, B., & Nistor, I. (2015). Nonlinear normal modes of a two degrees-of-freedom piecewise linear system. Mechanical Systems and Signal Processing, 64, 266-281.

[674] Mukhamedzhanov, A. M., & Nunes, F. M. (2002). Low energy behavior of the astrophysical S-factor in radiative captures to loosely bound final states. Nuclear Physics A, 708(3-4), 437-459.

[675] Mukherjee, S., & Padhi, S. S. (2018). Risk connectivity and risk mitigation: An analytical framework (No. 18/11). CREDIT Research Paper.

[676] Mumtaz, F., & Alharbi, F. H. (2019, November). Deformation and Smoothing of Cusp Singularities. In Journal of Physics: Conference Series (Vol. 1391, No. 1, p. 012021). IOP Publishing.

[677] Musa, F. A., & Carusone, A. C. (2003, May). Clock recovery in high-speed multilevel serial links. In Proceedings of the 2003 International Symposium on Circuits and Systems, 2003. ISCAS’03. (Vol. 5, pp. V-V). IEEE.

[678] Musa, F. A., & Carusone, A. C. (2007). Modeling and design of multilevel bang–bang CDRs in the presence of ISI and noise. IEEE Transactions on Circuits and Systems I: Regular Papers, 54(10), 2137-2147.

[679] Mushgil, H. M., Alani, H. A., & George, L. E. (2015). Comparison between resilient and standard back propagation algorithms efficiency in pattern recognition. International Journal of Scientific & Engineering Research, 6(3), 773-778.

[680] Musonere, C. R., & Qutbuddin, T. (2016). Calibration of the Multiscale Stochastic Volatility Model via an Asymptotic Expansion Approach.

[681] Nagari-Haddif, G. Constrained sketching on a grid: a lens for online assessment of derivative sketching. In Conference on Technology in Mathematics Teaching–ICTMT 14 (p. 205).

[682] Nagy, P., Stumpf, P., & Nagy, I. (2013, October). Control of wind power. In 2013 International Conference on Renewable Energy Research and Applications (ICRERA) (pp. 292-297). IEEE.

[683] Nahuis, R., & Smulders, S. (2000, August). The Rising Skill Premium, Technological Change and Appropriability. In Econometric Society World Congress.

[684] Nakarachinda, R., Hirunsirisawat, E., Tannukij, L., & Wongjun, P. (2021). Effective thermodynamical system of Schwarzschild-de Sitter black holes from R’e nyi statistics. arXiv preprint arXiv:2106.02838.

[685] Namane, R., Miguet, S., & Oulebsir, F. B. (2018). A fast voxelization algorithm for trilinearly interpolated isosurfaces. The Visual Computer, 34(1), 5-20.

[686] Namoradze, N. Z., & Ratishvili, I. G. (2007). Hydrogen ordering induced resistivity anomalies in the superstoichiometric light rare-earth dihydrides. Journal of alloys and compounds, 446, 429-435.

[687] Nara, Y., & Stoecker, H. (2019). Sensitivity of the excitation functions of collective flow to relativistic scalar and vector meson interactions in the relativistic quantum molecular dynamics model RQMD. RMF. Physical Review C, 100(5), 054902.

[688] Navalpakkam, V., & Itti, L. (2006). Optimal cue selection strategy. In Advances in neural information processing systems (pp. 987-994).

[689] Navarra, E., Vannoorenberghe, G., & Ottaviano, G. Markup responses to international outsourcing: an empirical analysis.

[690] Nayana, B. R., & Geethanjali, P. (2018). SEVERITY IDENTIFICATION AND MULTI-FAULT CLASSIFICATION OF ROLLER BEARINGS. International Journal of Pure and Applied Mathematics, 119(14), 221-229.

[691] Nemirovsky, R. (1994). On ways of symbolizing: The case of Laura and the velocity sign. The Journal of Mathematical Behavior, 13(4), 389-422.

[692] Nevzorov, A. N. (2006). Glory phenomenon informs of presence and phase state of liquid water in cold clouds. Atmospheric research, 82(1-2), 367-378.

[693] Ngo, H. Q. T., Nguyen, T. P., & Nguyen, H. (2020). Research on a low-cost, open-source, and remote monitoring data collector to predict livestock’s habits based on location and auditory information: a case study from Vietnam. Agriculture, 10(5), 180.

[694] Niemann, R., & Sureth-Sloane, C. (2019). Investment timing effects of wealth taxes under uncertainty and irreversibility. Journal of Business Economics, 89(4), 385-415.

[695] Niether, D., Di Lecce, S., Bresme, F., & Wiegand, S. (2018). Unravelling the hydrophobicity of urea in water using thermodiffusion: implications for protein denaturation. Physical Chemistry Chemical Physics, 20(2), 1012-1020.

[696] Nikolaidis, P., & Poullikkas, A. (2020). Enhanced Lagrange relaxation for the optimal unit commitment of identical generating units. IET Generation, Transmission & Distribution, 14(18), 3920-3928.

[697] Nock, R., Nielsen, F., & Amari, S. I. (2015). On conformal divergences and their population minimizers. IEEE Transactions on Information Theory, 62(1), 527-538.

[698] Noll, J. (2004). Optimal pricing with product quality differences and contractual penalties. Erasmus L. & Econ. Rev., 1, 207.

[699] Novák, V. (2016). Linguistic characterization of time series. Fuzzy Sets and Systems, 285, 52-72.

[700] Nwogwugwu, U., Nwamaka, O., Nwokoye, E., & Ezenekwe, R. (2017). Impact of child labour on human capital development in Onitsha, Anambra state, Nigeria. Journal of Education, Society and Behavioural Science, 21(3), 1-12.

[701] Odabaş, C., & Morgül, Ö. (2021). Adaptive friction compensations for mechanical systems with measurement delay. Transactions of the Institute of Measurement and Control, 43(8), 1745-1759.

[702] Oehmke, M., & Zawadowski, A. (2019). The tragedy of complexity. LSE and CEU Working Paper.

[703] Offiong, A. I., Riman, H. B., & Eyo, E. E. (2016). Determining Optimal Portfolio in a Three-Asset Portfolio Mix in Nigeria. Journal of Mathematical Finance, 6(4), 524-540.

[704] Ogurtani, T. O., & Akyildiz, O. (2015). Hillock formation by surface drift-diffusion driven by the gradient of elastic dipole interaction energy under compressive stresses in bi-crystalline thin films. Hittite Journal of Science and Engineering, 2(1), 65-76.

[705] Ohba, T., Matsuda, R., Suemitsu, H., & Matsuo, T. (2015). Improvement of EMC in MPPT Control of Photovoltaic System Using Auto-Tuning Adaptive Velocity Estimator. Journal of Robotics and Mechatronics, 27(5), 489-495.

[706] Ojala, T., Pietikainen, M., & Maenpaa, T. (2002). Multiresolution gray-scale and rotation invariant texture classification with local binary patterns. IEEE Transactions on pattern analysis and machine intelligence, 24(7), 971-987.

[707] Okamoto, H., Watanabe, T., Ohta, R., Onomitsu, K., Gotoh, H., Sogawa, T., & Yamaguchi, H. (2015). Cavity-less on-chip optomechanics using excitonic transitions in semiconductor heterostructures. Nature communications, 6(1), 1-6.

[708] Okamura, H., & Dohi, T. (2013). Optimal trigger time of software rejuvenation under probabilistic opportunities. IEICE TRANSACTIONS on Information and Systems, 96(9), 1933-1940.

[709] Okubo, T. S., Patella, P., D’Alessandro, I., & Wilson, R. I. (2020). A neural network for wind-guided compass navigation. Neuron, 107(5), 924-940.

[710] Olsen, T. (2018). Optimal investment strategies under decision-dependent stochastic environments (Master’s thesis, NTNU).

[711] Olsen, T., & Hagspiel, V. (2018). Revenue-Enhancing Pre-Investment Activities under Uncertainty. Available at SSRN 3194617.

[712] Olson, J. F., Rajagopalan, S., & Antonia, R. (1999). Influence of stationary and rotating cylinders on a turbulent plane jet. Engineering turbulence modelling and experiments 4, 423-432.

[713] Önsel, N., Önsel, İ. E., & Yücel, G. (2013). Evaluation of alternative dynamic behavior representations for automated model output classification and clustering. Proceedings of the 2013.

[714] Orek, C., Kłos, J., Lique, F., & Bulut, N. (2016). Ab initio studies of the Rg–NO+ (X1Σ+) van der Waals complexes (Rg= He, Ne, Ar, Kr, and Xe). The Journal of chemical physics, 144(20), 204303.

[715] Orlova, A. V., & Kononov, L. O. Polarimetry as a method for studying the structure of aqueous carbohydrate solutions: correlation with other methods.

[716] Ortega, A. G. A. M., Gaboriau, F., Boeuf, J. P., & Boniface, C. (2019). Influence of double-stage operation on breathing oscillations and rotating spokes in the ID-HALL thruster.

[717] Osmond, M. M., Otto, S. P., & Klausmeier, C. A. (2017). When predators help prey adapt and persist in a changing environment. The American Naturalist, 190(1), 83-98.

[718] Osório Costa, A. M. (2012). The Limits of Discrete Time Repeated Games: Some Notes and Comments. Ott, I., & Soretz, S. (2020). Institutional design and spatial (in) equality–the Janus face of economic integration.

[719] Oveshnikov, L., Morgun, L., Nekhaeva, E., Kulbachinskii, V., & Aronzon, B. (2018). Quantum effects in magnetotransport of InGaAs quantum wells with remote Mn impurities. In EPJ Web of Conferences (Vol. 185, p. 06007). EDP Sciences.

[720] Pabiou, H., Salort, J., Ménézo, C., & Chillà, F. (2015). Natural cross-ventilation of buildings, an experimental study. Energy Procedia, 78, 2911-2916.

[721] Padmanabhan, T. (2004). Entropy of static spacetimes and microscopic density of states. Classical and Quantum Gravity, 21(18), 4485.

[722] Paenke, I., Kawecki, T. J., & Sendhoff, B. (2009). The influence of learning on evolution: A mathematical framework. Artificial Life, 15(2), 227-245.

[723] Pallares-Munoz, M. R., Paya-Zaforteza, I., & Hospitaler, A. (2021, June). A new methodology using beam elements for the analysis of steel frames subjected to non-uniform temperatures due to fires. In Structures (Vol. 31, pp. 462-483). Elsevier.

[724] Palley, T. I. (2017). Inequality and growth in neo-Kaleckian and Cambridge growth theory. Review of Keynesian Economics, 5(2), 146-169.

[725] Palley, T. (2019). Unemployment and growth: Putting unemployment into Post Keynesian growth theory. Review of Political Economy, 31(2), 194-215.

[726] Pan, D., Li, X., & Zhu, D. (2021, August). Explaining Deep Neural Network Models with Adversarial Gradient Integration. In Thirtieth International Joint Conference on Artificial Intelligence (IJCAI).

[727] Pan, J., Lin, Z., Su, Z., & Yang, M. H. (2016). Robust kernel estimation with outliers handling for image deblurring. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (pp. 2800-2808).

[728] Pan, Y., Imani, E., White, M., & Farahmand, A. M. (2020). An implicit function learning approach for parametric modal regression. arXiv preprint arXiv:2002.06195.

[729] Panadés, J. (2004). Tax evasion and relative tax contribution. Public Finance Review, 32(2), 183-195.

[730] Panda, K. C., Rath, R., & Rath, S. K. (2020). Oscillatory Behaviour of Higher Order Neutral Differential Equations with Several Delays and with a Super Linear Term. International Journal of Difference Equations (IJDE), 15(1), 45-70.

[731] Pandey, A., Ghose-Choudhury, A., & Guha, P. (2017). Chiellini integrability and quadratically damped oscillators. International Journal of Non-Linear Mechanics, 92, 153-159.

[732] Pandher, G. (2019). Financier search and boundaries of the angel and VC markets. Entrepreneurship Theory and Practice, 43(6), 1223-1249.

[733] Papahristodoulou, C. (2009). Bonus, effort, costs, market size and teams’ performance.

[734] Papernot, N., McDaniel, P., Swami, A., & Harang, R. (2016, November). Crafting adversarial input sequences for recurrent neural networks. In MILCOM 2016-2016 IEEE Military Communications Conference (pp. 49-54). IEEE.

[735] Park, J. E. (2011). Calculus Instructors and Students’ Discourseson the Derivative. Journal of Educational Research in Mathematics, 21(1), 33-55.

[736] Park, J. E. (2012). Students’ Understanding of the Derivative-Literature Review of English and Korean Publications. Journal of the Korean School Mathematics Society, 15(2), 331-348.

[737] Park, J., & Flores, A. (2012). Transition from Derivative at a Point to Derivative as a Function. North American Chapter of the International Group for the Psychology of Mathematics Education.

[738] Parrot, M. (2011). Statistical analysis of the ion density measured by the satellite DEMETER in relation with the seismic activity. Earthquake Science, 24(6), 513-521.

[739] Pasandideh, I., Rajabi, A., Yosefvand, F., & Shabanlou, S. (2020). Modeling Length of Hydraulic Jump on Sloping Rough Bed using Gene Expression Programming. Journal of AI and Data Mining, 8(4), 535-544.

[740] Pašić, M. (2015). Sign-changing first derivative of positive solutions of forced second-order nonlinear differential equations. Applied Mathematics Letters, 40, 40-44.

[741] Pazouki, E., Sozer, Y., & De Abreu-Garcia, J. A. Fault Diagnosis and Fault Tolerant Operation of Non-Isolated DC-DC Converters.

[742] Peng, C. K., Buldyrev, S. V., Havlin, S., Simons, M., Stanley, H. E., & Goldberger, A. L. (1994). Mosaic organization of DNA nucleotides. Physical review e, 49(2), 1685.

[743] Perazzo, C. A., & Gratton, J. (2003). Thin film of non-Newtonian fluid on an incline. Physical Review E, 67(1), 016307.

[744] Pereda Sebastián, D. D. (2015). Methods for the treatment of uncertainty in dynamical systems: Application to diabetes (Doctoral dissertation, Universitat Politècnica de València).

[745] Pérez Cervera, A. (2019). On the role of oscillatory dynamics in neural communication (Doctoral dissertation, Universitat Politècnica de Catalunya).

[746] Pérez, H. G., Ortega, M. V., & Díaz, M. C. (2019, November). Economic growth model in developing economies. In Journal of Physics: Conference Series (Vol. 1388, No. 1, p. 012033). IOP Publishing.

[747] Pessoa, J. O., Fonseca, N., & Guedes Soares, C. (2010, January). Experimental and Numerical Study of the Depth Effect on the First Order and Slowly Varying Motions of a Floating Body in Bichromatic Waves. In International Conference on Offshore Mechanics and Arctic Engineering (Vol. 49125, pp. 723-731).

[748] Pesty, F., & Garoche, P. (2005). Low-energy electron beam on an insulator surface: Impact of the charging process on the diffraction by mica muscovite. Surface science, 580(1-3), 153-162.

[749] Petikas, I., Keramaris, E., & Kanakoudis, V. (2020). Calculation of Multiple Critical Depths in Open Channels Using an Adaptive Cubic Polynomials Algorithm. Water, 12(3), 799.

[750] Petrone, N., & Marcolin, G. (2009). ANALYSIS OF COMBINED EMG AND JOINT ANGULAR VELOCITY FOR THE EVALUATION OF ECCENTRIC/CONCENTRIC CONTRACTION IN SKIING. In ISBS-Conference Proceedings Archive.

[751] Petrov, D. (2014). Lattice enthalpies, polarizabilities and shear moduli of lanthanide orthophosphates LnPO 4. Acta Chim. Slov, 61, 34-38.

[752] Pham, M. T., Gautier, M., & Poignet, P. (2001, May). Identification of joint stiffness with bandpass filtering. In Proceedings 2001 ICRA. IEEE International Conference on Robotics and Automation (Cat. No. 01CH37164) (Vol. 3, pp. 2867-2872). IEEE.

[753] Pham, T. Q. (2010, December). Non-maximum suppression using fewer than two comparisons per pixel. In International Conference on Advanced Concepts for Intelligent Vision Systems (pp. 438-451). Springer, Berlin, Heidelberg.

[754] Phuong, T. T. (2021). Decentralized Descent Optimization with Stochastic Gradient Signs for Device-to-Device Networks. IEEE Wireless Communications Letters.

[755] Piantoni, G., Hermes, D., Ramsey, N., & Petridou, N. (2021). Size of the spatial correlation between ECoG and fMRI activity. NeuroImage, 242, 118459.

[756] Pike, R., Lu, G., Wang, D., Chen, Z. G., & Fei, B. (2015). A minimum spanning forest-based method for noninvasive cancer detection with hyperspectral imaging. IEEE Transactions on Biomedical Engineering, 63(3), 653-663.

[757] Pinter, A. (2017). Small-time asymptotics, moment explosion and the moderate deviations regime (Doctoral dissertation, Wien).

[758] Piretzidis, D., Sra, G., & Sideris, M. G. (2016, December). Identification of correlated grace monthly harmonic coefficients using pattern recognition and neural networks. In AGU Fall Meeting, San Francisco,-December.

[759] Píša, D., Santolík, O., Hospodarsky, G. B., Kurth, W. S., Gurnett, D. A., & Souček, J. (2016). Spatial distribution of Langmuir waves observed upstream of Saturn’s bow shock by Cassini. Journal of Geophysical Research: Space Physics, 121(8), 7771-7784.

[760] Pismensky, A., & Ulshin, V. (2014). Synthesis of extreme control system of coal cleaning in jigs. Teka Komisji Motoryzacji i Energetyki Rolnictwa, 14(2).

[761] Plahte, E., Gjuvsland, A. B., & Omholt, S. W. (2013). Propagation of genetic variation in gene regulatory networks. Physica D: Nonlinear Phenomena, 256, 7-20.

[762] Planinic, M., Milin-Sipus, Z., Katic, H., Susac, A., & Ivanjek, L. (2012). Comparison of student understanding of line graph slope in physics and mathematics. International journal of science and mathematics education, 10(6), 1393-1414.

[763] Polinsky, A. M., & Shavell, S. (2018). Subrogation and the Theory of Insurance When Suits Can Be Brought for Losses Suffered. The Journal of Law, Economics, and Organization, 34(4), 619-649.

[764] Politi, P., & Misbah, C. (2007). Modified Kuramoto-Sivashinsky equation: Stability of stationary solutions and the consequent dynamics. Physical Review E, 75(2), 027202.

[765] Poltera, Y., Martucci, G., Collaud Coen, M., Hervo, M., Emmenegger, L., Henne, S., … & Haefele, A. (2017). PathfinderTURB: an automatic boundary layer algorithm. Development, validation and application to study the impact on in situ measurements at the Jungfraujoch. Atmospheric Chemistry and Physics, 17(16), 10051-10070.

[766] Polyachenko, E. V., & Shukhman, I. G. (2020). The Lynden-Bell bar formation mechanism in simple and realistic galactic models. Monthly Notices of the Royal Astronomical Society, 498(3), 3368-3373.

[767] Polyakov, P., Luettmer-Strathmann, J., & Wiegand, S. (2006). Study of the thermal diffusion behavior of alkane/benzene mixtures by thermal diffusion forced Rayleigh scattering experiments and lattice model calculations. The Journal of Physical Chemistry B, 110(51), 26215-26224.

[768] Ponce-de-Leon, C., Low, C. T. J., Kear, G., & Walsh, F. C. (2007). Strategies for the determination of the convective-diffusion limiting current from steady state linear sweep voltammetry. Journal of Applied Electrochemistry, 37(11), 1261-1270.

[769] Ponce-Flores, M., Frausto-Solís, J., Santamaría-Bonfil, G., Pérez-Ortega, J., & González-Barbosa, J. J. (2020). Time series complexities and their relationship to forecasting performance. Entropy, 22(1), 89.

[770] Poole, B., Lahiri, S., Raghu, M., Sohl-Dickstein, J., & Ganguli, S. (2016). Exponential expressivity in deep neural networks through transient chaos. Advances in neural information processing systems, 29, 3360-3368.

[771] Poole, P. H., Saika-Voivod, I., & Sciortino, F. (2005). Density minimum and liquid–liquid phase transition. Journal of Physics: Condensed Matter, 17(43), L431.

[772] Popescu, I. (2007). Robust mean-covariance solutions for stochastic optimization. Operations Research, 55(1), 98-112.

[773] Pouget, J. P., Canadell, E., & Guster, B. (2021). Momentum-dependent electron-phonon coupling in charge density wave systems. Physical Review B, 103(11), 115135.

[774] Pourvoyeur, K. (2020). Quantum Gravity and Absolute Motion Through Discretization of Velocity and Acceleration Incorporating the Speed Limit of Light Speed.

[775] Pownuk, A., & Ramunigari, N. K. G. (2011). Application of Order-Preserving Functions to the Modeling of Computational Mechanics Problems with Uncertainty. Reliab. Comput., 15(2), 132-143.

[776] Pradeep, M. S., & Stephanov, M. (2019). Universality of the critical point mapping between Ising model and QCD at small quark mass. Physical Review D, 100(5), 056003.

[777] Prasad, B. S. R. V., Srinivasu, P. D. N., Varma, P. S., Raman, A. V., & Ray, S. (2014). Dynamics of dissolved oxygen in relation to saturation and health of an aquatic body: a case for Chilka Lagoon, India. Journal of Ecosystems, 2014.

[778] Prasad, N., Singh, R., & Lal, S. P. (2013, September). Comparison of back propagation and resilient propagation algorithm for spam classification. In 2013 Fifth international conference on computational intelligence, modelling and simulation (pp. 29-34). IEEE.

[779] Preechakul, K., & Kijsirikul, B. (2019). CProp: Adaptive Learning Rate Scaling from Past Gradient Conformity. arXiv preprint arXiv:1912.11493.

[780] Prishchenko, O., & Chernogor, T. (2020). Analysis of opportunities of analytical method of optimization in chemical technology. Вісник Національного технічного університету «ХПІ». Серія: Інноваційні дослідження у наукових роботах студентів, (5), 79-85.

[781] Priyadarshi, S., Pierz, K., & Bieler, M. (2013). All-optically induced currents resulting from frequency-modulated coherent polarization. Applied Physics Letters, 102(11), 112102.

[782] Prywer, J., Delmonte, D., Solzi, M., Cugini, F., Roleder, K., Soszyński, A., … & Zarȩba, J. K. (2020). First experimental evidences of the ferroelectric nature of struvite. Crystal Growth & Design, 20(7), 4454-4460.

[783] Pullen, K., & Bregler, C. (2002, July). Motion capture assisted animation: Texturing and synthesis. In Proceedings of the 29th annual conference on Computer graphics and interactive techniques (pp. 501-508).

[784] Pustovoyt, V. I. (2016, July). On the direct detection of gravitational waves, and some of the problems of improving laser interferometers. In Journal of Physics: Conference Series (Vol. 731, No. 1, p. 012011). IOP Publishing.

[785] Qasim, M., Månsson, K., Amin, M., Kibria, B. G., & Sjölander, P. (2020). Biased adjusted Poisson ridge estimators-method and application. Iranian Journal of Science and Technology, Transactions A: Science, 44(6), 1775-1789.

[786] Qian, L. (2012). The Fisher information matrix for a three-parameter exponentiated Weibull distribution under type II censoring. Statistical Methodology, 9(3), 320-329.

[787] Quirós, M. T., Hurtado-Rodrigo, C., & Muñoz, M. P. (2017). Nucleophile dependent formation of 6-and 7-membered N-heterocycles by platinum-catalysed cyclisation of 1, 5-bisallenes. Organic & biomolecular chemistry, 15(32), 6731-6737.

[788] Rabiei, M., Yi, Y., Bayat, A., Cheng, R., & Osbak, M. (2017). Estimation of hydrokinetic pressure and fluidic drag changes during pipe installations via HDD based on identifying slurry-flow pattern change within a borehole. Journal of Pipeline Systems Engineering and Practice, 8(4), 04017020.

[789] Rakitin, V. V., & Rusakov, S. G. (2021). Functional Capabilities of Coupled Memristor-Based Reactance-Less Oscillators.

[790] Ramdas, A., & Singh, A. (2013, October). Algorithmic connections between active learning and stochastic convex optimization. In International Conference on Algorithmic Learning Theory (pp. 339-353). Springer, Berlin, Heidelberg.

[791] Ramos-Francia, M., & García-Verdú, S. (2017). Bank credit allocation and sectorial concentration in Mexico: Some empirical evidence (No. 2017-14). Working Papers.

[792] Rassokha, S. S., Ladov, S. V., & Babkin, A. V. (2017, October). Numerical analysis of corrugated shells rotation. In Journal of Physics: Conference Series (Vol. 894, No. 1, p. 012140). IOP Publishing.

[793] Ravi, S., & Larochelle, H. (2016). Optimization as a model for few-shot learning.

[794] Raykov, R. S. (2016). To share or not to share? Uncovered losses in a derivatives clearinghouse (No. 2016-4). Bank of Canada Staff Working Paper.

[795] Rebelo, L. P. N., Visak, Z. P., De Sousa, H. C., Szydlowski, J., Gomes de Azevedo, R., Ramos, A. M., … & Klein, J. (2002). Double critical phenomena in (water+ polyacrylamides) solutions. Macromolecules, 35(5), 1887-1895.

[796] Redi, M., O’Hare, N., Schifanella, R., Trevisiol, M., & Jaimes, A. (2014). 6 seconds of sound and vision: Creativity in micro-videos. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (pp. 4272-4279).

[797] Reyes, E. D., Bretas, A. S., & Rivera, S. (2020). Marginal Uncertainty Cost Functions for Solar Photovoltaic, Wind Energy, Hydro Generators, and Plug-In Electric Vehicles. Energies, 13(23), 6375.

[798] Řezníček, M., Bezoušek, P., & Zálabský, T. (2016). AMTI filter design for radar with variable pulse repetition period. Journal of Electrical Engineering, volume 67, issue: 2.

[799] Ribar, L., & Sepulchre, R. (2019). Neuromodulation of neuromorphic circuits. IEEE Transactions on Circuits and Systems I: Regular Papers, 66(8), 3028-3040.

[800] Ricke, M. (2004). What is the link between margin loans and stock market bubbles?. University of Muenster, Department of Banking, (03-01).

[801] Riedmiller, M. (1994). Advanced supervised learning in multi-layer perceptrons—from backpropagation to adaptive learning algorithms. Computer Standards & Interfaces, 16(3), 265-278.

[802] Riedmiller, M., & Braun, H. (1993, March). A direct adaptive method for faster backpropagation learning: The RPROP algorithm. In IEEE international conference on neural networks (pp. 586-591). IEEE.

[803] Rigal, S., Devictor, V., & Dakos, V. (2020). A method for classifying and comparing non-linear trajectories of ecological variables. Ecological Indicators, 112, 106113.

[804] Riihimäki, J., & Vehtari, A. (2010, March). Gaussian processes with monotonicity information. In Proceedings of the thirteenth international conference on artificial intelligence and statistics (pp. 645-652). JMLR Workshop and Conference Proceedings.

[805] Rionero, S. (2005). On instability sources in dynamical systems. In Trends and Applications of Mathematics to Mechanics (pp. 141-153). Springer, Milano.

[806] Riutort-Mayol, G., Andersen, M. R., Vehtari, A., & Lerma, J. L. (2019). Gaussian process with derivative information for the analysis of the sunlight adverse effects on color of rock art paintings. arXiv preprint arXiv:1911.03454.

[807] Riutort-Mayol, G., Gómez-Rubio, V., Lerma, J. L., & del Hoyo-Meléndez, J. M. (2020). Correlated Functional Models with Derivative Information for Modeling Microfading Spectrometry Data on Rock Art Paintings. Mathematics, 8(12), 2141.

[808] Rodrigues, P. T. P. (2019). Does funding liquidity help predict US Dollar returns? (Doctoral dissertation).

[809] Rodriguez, D., Moreno, V., Gallas, M., Abeleira, M. T., & Suarez, D. (2004). In-plane electronic speckle pattern of interference (ESPI) with optical fibre system applied to the study of the human jaw. Medical engineering & physics, 26(5), 371-378.

[810] Rojas-Rodríguez, F., Morantes, C., Pinzón, A., Barreto, G. E., Cabezas, R., Mariño-Ramírez, L., & González, J. (2020). Machine Learning Neuroprotective Strategy Reveals a Unique Set of Parkinson Therapeutic Nicotine Analogs. The open bioinformatics journal, 13, 1.

[811] Romacevych, Y., Loveikin, V., & Stekhno, O. (2019). Closed-loop optimal control of a system Trolley-Payload. Scientific Bulletin, Series D Mechanical Engineering, 81(2), 5-12.

[812] Roo, P., Spencer, R. R., & Hurst, P. J. (2000). A CMOS analog timing recovery circuit for PRML detectors. IEEE Journal of Solid-State Circuits, 35(1), 56-65.

[813] Rosół, M., & Sapiński, B. (2019). Ability of energy harvesting MR damper to act as a velocity sensor in vibration control systems. acta mechanica et automatica, 13(2).

[814] Ross, A. C., Najjar, R. G., Li, M., Mann, M. E., Ford, S. E., & Katz, B. (2015). Sea-level rise and other influences on decadal-scale salinity variability in a coastal plain estuary. Estuarine, Coastal and Shelf Science, 157, 79-92.

[815] Rozsa, A., Rudd, E. M., & Boult, T. E. (2016). Adversarial diversity and hard positive generation. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition Workshops (pp. 25-32).

[816] Roux, J. L., & McDermott, E. (2005). Optimization methods for discriminative training. In Ninth European Conference on Speech Communication and Technology.

[817] Roxworthy, B. J., & Aksyuk, V. A. (2018). Electrically tunable plasmomechanical oscillators for localized modulation, transduction, and amplification. Optica, 5(1), 71-79.

[818] Roychoudhury, S. (2018). Creating Optimal Portfolio and the Efficient Frontier Using Microsoft Excel®. Journal of Quantitative Methods, 2(2), 104-136.

[819] Rubio-Herrero, J., & Baykal-Gürsoy, M. (2018). On the unimodality of the price-setting newsvendor problem with additive demand under risk considerations. European Journal of Operational Research, 265(3), 962-974.

[820] Rubio, O. B. (2017). Distribution and aggregate demand: Implications of the Bhaduri-Marglin model. In XXIV Encuentro de Economía Pública (p. 3). Universidad de Castilla-La Mancha.

[821] Ruderman, M. (2017). On break-away forces in actuated motion systems with nonlinear friction. Mechatronics, 44, 1-5.

[822] Ruiz, A., Pérez, H., Morera-Boado, C., Almagro, L., da Silva, C. C., Ellena, J., … & Martín, N. (2014). Unusual hydrogen bond patterns contributing to supramolecular assembly: conformational study, Hirshfeld surface analysis and density functional calculations of a new steroid derivative. CrystEngComm, 16(33), 7802-7814.

[823] Ryu, J. H., Hannaford, B., Kwon, D. S., & Kim, J. H. (2005). A simulation/experimental study of the noisy behavior of the time-domain passivity controller. IEEE transactions on robotics, 21(4), 733-741.

[824] Ryu, J. H., Song, J., & Kwon, D. S. (2001). A nonlinear friction compensation method using adaptive control and its practical application to an in-parallel actuated 6-DOF manipulator. Control Engineering Practice, 9(2), 159-167.

[825] Safaryan, M., & Richtárik, P. (2021, July). Stochastic Sign Descent Methods: New Algorithms and Better Theory. In International Conference on Machine Learning (pp. 9224-9234). PMLR.

[826] Saha, B., & Mukherji, S. (2013). Coupling driven exclusion and diffusion processes on parallel lanes: boundary induced phase transitions and boundary layers. Journal of Statistical Mechanics: Theory and Experiment, 2013(09), P09004.

[827] Sahakyan, M., & Tran, V. H. (2015). Electronic band structure of Ru3Sn7. Acta Physica Polonica A, 127(2), 303-305.

[828] Sahu, G. N., Singh, S., Singh, A., & Law, M. (2020, June). Static and Dynamic Characterization and Control of a High-Performance Electro-Hydraulic Actuator. In Actuators (Vol. 9, No. 2, p. 46). Multidisciplinary Digital Publishing Institute.

[829] Saidi, M., Walha, S., Hlil, E. K., Bessais, L., & Jemmali, M. (2021). Effect of chromium substitution on structural, magnetic and magnetocaloric properties of GdFe12− xCrx intermetallic compounds, Mössbauer spectrometry and ab initio calculations. Journal of Solid State Chemistry, 297, 122019.

[830] Saitta, F., Clemente, P., Buffarini, G., Bongiovanni, G., Salvatori, A., & Grossi, C. (2018). Base isolation of buildings with curved surface sliders: Basic design criteria and critical issues. Advances in Civil Engineering, 2018.

[831] Sakah, M., & Chebbi, B. (2016). Measuring solid surface velocity and detection of particle movement by laser Bessel beams. Optical Engineering, 55(9), 091411.

[832] Salgado, G. R., & Amy, B. (2003). Neuro-Symbolic Hybrid System for Treatment of Gradual Rules. Neural Information Processing–Letters and Reviews, 1(2).

[833] Sánchez Romero, M. D. (2019). Consumers’ privacy, selling of information, and security in digital markets.

[834] Sankaranarayanan, S., Jain, A., Chellappa, R., & Lim, S. N. (2018, April). Regularizing deep networks using efficient layerwise adversarial training. In Thirty-Second AAAI Conference on Artificial Intelligence.

[835] Santos-Pinto, L. (2021). Are Overconfident Players More Likely to Win Tournaments and Contests?. Université de Lausanne, Faculté des HEC, Département d’économie.

[836] Santra, S., Hamma, A., Cincio, L., Subasi, Y., Zanardi, P., & Amico, L. (2014). Local convertibility of the ground state of the perturbed toric code. Physical Review B, 90(24), 245128.

[837] Sanz, J. M., Saiz, J. M., González, F., & Moreno, F. (2011). Polar decomposition of the Mueller matrix: a polarimetric rule of thumb for square-profile surface structure recognition. Applied optics, 50(21), 3781-3788.

[838] Sapiński, B. (2017). Laboratory testing of velocity sensing in a magnetorheological damper with power generation. acta mechanica et automatica, 11(3).

[839] Sarkar, N., Prost, J., & Jülicher, F. (2019). Field induced cell proliferation and death in a model epithelium. New Journal of Physics, 21(4), 043035.

[840] Sasaki, H. (2018). North-South Trade and Uneven Development in a Classical Conventional Wage Share Growth Model.

[841] Sawaki, H. (2019). Labor-Quality Signaling to Attract Foreign Investment.

[842] Scheelings, R. (2005). Essays in Law and Economics (Doctoral dissertation, University of California, Los Angeles).

[843] Schitov, N. N. (2019). The Optics and Optimal Control Theory Interpretation of the Parametric Resonance. Physics and Applications, 7(3), 73-83.

[844] Schliephake, E., & Shapiro, J. (2018). Learning in bank runs.

[845] Schmidt, M. (2010). Graphical model structure learning with l1-regularization. University of British Columbia.

[846] Schorsch, J., Kinnaert, M., Fekih-Salem, R., Dewasme, L., Castro, C. C., & Wouwer, A. V. (2018). Identification and optimal control of fructo-oligosaccharide production. IFAC-PapersOnLine, 51(18), 678-683.

[847] Schramm, R., Jung, C. R., & Miranda, E. R. (2014). Dynamic time warping for music conducting gestures evaluation. IEEE Transactions on Multimedia, 17(2), 243-255.

[848] Schunker, H., Birch, A. C., Cameron, R. H., Braun, D. C., Gizon, L., & Burston, R. B. (2019). Average motion of emerging solar active region polarities-I. Two phases of emergence. Astronomy & Astrophysics, 625, A53.

[849] Schütz, B. (2009). Endogeneity of labor productivity and the real wage rate in a Kaleckian model-Why it makes a difference.

[850] Schwartz, M. (2019). Lecture 9: Phase Transitions. Statistical Mechanics, Spring 2019.

[851] Schwartz, Z. P., Buran, B. N., & David, S. V. (2020). Pupil-associated states modulate excitability but not stimulus selectivity in primary auditory cortex. Journal of neurophysiology, 123(1), 191-208.

[852] Scipy (2021) Peak finding utils [Source code]. https://github.com/scipy/scipy/blob/master/scipy/signal/_peak_finding_utils.pyx.

[853] Sedlyarova, N., Rescheneder, P., Magan, A., Popitsch, N., Rziha, N., Bilusic, I., … & Nudler, E. (2017). Natural RNA polymerase aptamers regulate transcription in E. coli. Molecular cell, 67(1), 30-43.

[854] Seethaler, S., Czworkowski, J., & Wynn, L. (2018). Analyzing general chemistry texts’ treatment of rates of change concepts in reaction kinetics reveals missing conceptual links. Journal of Chemical Education, 95(1), 28-36.

[855] Seifu, D., Hall, A. J., Elbert, D., McGuiggan, P., Myers, O. J., & Budhani, R. C. (2020). Magnetostrictive particulates of Tb0. 3Dy0. 7Fe2 integrated into carbon fiber reinforced polymer for structural damage monitoring. AIP Advances, 10(7), 075204.

[856] Semenoff, G. W. (2018). Dilaton in a cold Fermi gas. arXiv preprint arXiv:1808.03861.

[857] Seno, H. (2020). An SIS model for the epidemic dynamics with two phases of the human day-to-day activity. Journal of mathematical biology, 80(7), 2109-2140.

[858] Seo, C. H., Stephens, D., Cannata, J., Dentinger, A., Lin, F., Park, S., … & O’Donnell, M. (2010, October). Monitoring radiofrequency catheter ablation using thermal strain imaging. In 2010 IEEE International Ultrasonics Symposium (pp. 1364-1367). IEEE.

[859] Seok Lee, H., & Mu Lee, K. (2013). Simultaneous super-resolution of depth and images using a single camera. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (pp. 281-288).

[860] Sergeyev, B., Sisin, V., & Akkerman, G. (2019, December). Autonomous power supply of railway automation devices. In IOP Conference Series: Earth and Environmental Science (Vol. 403, No. 1, p. 012208). IOP Publishing.

[861] Servin, C., & Kreinovich, V. (2017). No Idea Is a Bad Idea: A Theoretical Explanation.

[862] Setare, M. R., & Saridakis, E. N. (2009). Braneworld models with a non-minimally coupled phantom bulk field: a simple way to obtain the–1-crossing at late times. Journal of Cosmology and Astroparticle Physics, 2009(03), 002.

[863] Setiawan, B. I., & Ma’mun, M. I. (2021). Climate trends and rainfall patterns in the Ciliwung watershed, West Java of Indonesia. In IOP Conference Series: Earth and Environmental Science (Vol. 622, No. 1, p. 012047). IOP Publishing.

[864] Shachar, A. “Improving AI Applications With a New Calculus Operator.” (2020). https://amirshachar.com/semi-discrete-calculus/

[865] Shah, R., & Del Vecchio, D. (2018, December). Reprogramming Cooperative Monotone Dynamical Systems Behaviors. In 2018 IEEE Conference on Decision and Control (CDC) (pp. 6938-6944). IEEE.

[866] Shahbazi, M., Jamshidpour, E., Poure, P., Saadate, S., & Zolghadri, M. R. (2012). Open-and short-circuit switch fault diagnosis for nonisolated DC–DC converters using field programmable gate array. IEEE transactions on industrial electronics, 60(9), 4136-4146.

[867] Shahzad, S. J. H., Bouri, E., Kayani, G. M., Nasir, R. M., & Kristoufek, L. (2020). Are clean energy stocks efficient? Asymmetric multifractal scaling behaviour. Physica A: Statistical Mechanics and its Applications, 550, 124519.

[868] Sharbaf, A., Bemanian, M., Daneshjoo, K., & Shakib, H. (2021). Masonry Dome Behavior under Gravity Loads Based on the Support Condition by Considering Variable Curves and Thicknesses. Buildings, 11(6), 241.

[869] Shashkin, A. A., Kravchenko, S. V., & Klapwijk, T. M. (2001). Metal-insulator transition in a 2D electron gas: Equivalence of two approaches for determining the critical point. Physical review letters, 87(26), 266402.

[870] Sheminova, V. A. (2009). Origin of Extremely Asymmetric Stokes V Profiles in an Inhomogeneous Atmosphere. arXiv preprint arXiv:0902.2940.

[871] Shen, J. M., Xia, X. W., Kang, W. G., Yuan, J. J., & Sheng, L. (2011). The use of MRI apparent diffusion coefficient (ADC) in monitoring the development of brain infarction. BMC Medical Imaging, 11(1), 1-4.

[872] Shende, R., Gupta, G., & Macherla, S. (2019). Determination of an inflection point for a dosimetric analysis of unflattened beam using the first principle of derivatives by python code programming. Reports of Practical Oncology and Radiotherapy, 24(5), 432-442.

[873] Sheremeta, R. M., & Uler, N. (2021). The impact of taxes and wasteful government spending on giving. Experimental Economics, 24(2), 355-386.

[874] Shevkunov, S. V. (2011). Effect of chlorine ions on the stability of nucleation cores in condensing water vapors. Russian Journal of Physical Chemistry A, 85(9), 1584-1591.

[875] Shi, W. T., Lyu, Z. J., Tang, S. T., Chia, T. L., & Yang, C. Y. (2018). A bionic hand controlled by hand gesture recognition based on surface EMG signals: A preliminary study. Biocybernetics and Biomedical Engineering, 38(1), 126-135.

[876] Shimokawa, T., Nishio, A., Sato, M. A., Kawato, M., & Komatsu, H. (2019). Computational model for human 3D shape perception from a single specular image. Frontiers in computational neuroscience, 13, 10.

[877] Shokhin, V. V., Permyakova, O. V., Khramshina, E. A., & Khramshin, V. R. (2017). The Use of Frequency Characteristics for Interconnected Drive of Rolling Mill Modes Research. Procedia Engineering, 206, 1768-1773.

[878] Shpatakovskaya, G. V. E. (2001). Quasiclassical analysis of the spectra of two groups of central potentials. Journal of Experimental and Theoretical Physics Letters, 73(6), 268-270.

[879] Shreter, Y. G., Rebane, Y. T., Tarkhin, D. V., Barakhtin, B. K., & Rybin, V. V. (2001). Kinetic mechanism of surface instability evolution during etching, corrosion, and growth of elastically stressed solids. Physics of the Solid State, 43(1), 169-175.

[880] Siciliani, P., & Giovannetti, E. (2019). Platform competition and incumbency advantage under heterogeneous switching cost—exploring the impact of data portability.

[881] Sidorov, A. (2011). The Impact of Exogenous Asymmetry on Trade and Agglomeration in Core-Periphery Model. Available at SSRN 1787832.

[882] Siemroth, C. (2019). The informational content of prices when policy makers react to financial markets. Journal of Economic Theory, 179, 240-274.

[883] Siivola, E., Vehtari, A., Vanhatalo, J., González, J., & Andersen, M. R. (2018, September). Correcting boundary over-exploration deficiencies in Bayesian optimization with virtual derivative sign observations. In 2018 IEEE 28th International Workshop on Machine Learning for Signal Processing (MLSP) (pp. 1-6). IEEE.

[884] Silva, A. F., Richter, W. E., Meneses, H. G., & Bruns, R. E. (2014). Atomic charge transfer-counter polarization effects determine infrared CH intensities of hydrocarbons: a quantum theory of atoms in molecules model. Physical Chemistry Chemical Physics, 16(42), 23224-23232.

[885] Silva, M. R&D investments and spillovers under endogenous technological opportunity: Why competing rms invest more as spillovers increase but less than cooperating rms no matter the degree of exogenous spillovers?.

[886] Silva, M., Ramos, W., Ferreira, J., Chamone, F., Campos, M., & Nascimento, E. R. (2018). A weighted sparse sampling and smoothing frame transition approach for semantic fast-forward first-person videos. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (pp. 2383-2392).

[887] Simon, S., Liuzzo, L., & Addison, P. (2021). Role of the Ionospheric Conductance Profile in Sub‐Alfvénic Moon‐Magnetosphere Interactions: An Analytical Model. Journal of Geophysical Research: Space Physics, 126(7), e2021JA029191.

[888] Simonov, B. F., Neyman, V. Y., Neyman, L. A., & Kordubailo, A. O. (2020, November). Modelling of electric drive of vibration exciter. In Journal of Physics: Conference Series (Vol. 1661, No. 1, p. 012083). IOP Publishing.

[889] Simpson, D. J. W. (2019). Notes for 160.734 Part VIII: Symbolic Dynamics, Measure Theory, and Ergodic Theory.

[890] Singh, S. (2020). Query-Efficient Black-box Adversarial Attacks. University of California, Los Angeles.

[891] Sinha, M., Mukhopadhyay, B., & Sedrakian, A. (2013). Hypernuclear matter in strong magnetic field. Nuclear Physics A, 898, 43-58.

[892] Sivan, Y., Fibich, G., Ilan, B., & Weinstein, M. I. (2008). Qualitative and quantitative analysis of stability and instability dynamics of positive lattice solitons. Physical Review E, 78(4), 046602.

[893] Sjoberg, B. D. (2003). Probabilistic analysis software for structural seismic response (Doctoral dissertation, University of British Columbia).

[894] Skalna, I., Rao, M. R., & Pownuk, A. (2008). Systems of fuzzy equations in structural mechanics. Journal of computational and Applied Mathematics, 218(1), 149-156.

[895] Skott, P. (2017). Weaknesses of ‘wage-led growth’. Review of Keynesian Economics, 5(3), 336-359.

[896] Sokko, A., & Schenk-Hoppé, K. R. (2017). Margin Requirements and Evolutionary Asset Pricing. Swiss Finance Institute Research Paper, (17-20).

[897] Sokolowski, A. (2014). Constructivist Approach to Algebraically Expressing a Line. Illinois Mathematics Teacher, 62(1), 4-9.

[898] Solis, F. J., Jódar, L., & Chen, B. (2005). Chaos in the one-dimensional wave equation. Applied mathematics letters, 18(1), 85-90.

[899] Song, F., Leung, L. R., Lu, J., & Dong, L. (2018). Seasonally dependent responses of subtropical highs and tropical rainfall to anthropogenic warming. Nature Climate Change, 8(9), 787-792.

[900] Song, S. H., Lo, C. C., Lee, S. J., Aldini, S. T., Snyder, J. E., & Jiles, D. C. (2007). Magnetic and magnetoelastic properties of Ga-substituted cobalt ferrite. Journal of applied physics, 101(9), 09C517.

[901] Sonneveld, B. G. J. S., & Nearing, M. A. (2003). A nonparametric/parametric analysis of the Universal Soil Loss Equation. Catena, 52(1), 9-21.

[902] Sontag, E. D. (2006). Monotone and near-monotone network structure (part I). arXiv preprint q-bio/0612032.

[903] Soretz, S., & Ott, I. (2019). Public expenditure, policy coordination, and regional inequality.

[904] Soshnikov, V. N. (2007). Collisionless damping of electron waves in non-Maxwellian plasma. arXiv preprint arXiv:0708.0748.

[905] Soudani, A., & Almusallam, M. (2018). Atrial Fibrillation detection based on ECG-Features Extraction in WBSN. Procedia computer science, 130, 472-479.

[906] Soulier, A., Braud, C., Voisin, D., & Podvin, B. (2021). Low-Reynolds-number investigations on the ability of the strip of e-TellTale sensor to detect the flow features over wind turbine blade section: flow stall and reattachment dynamics. Wind Energy Science, 6(2), 409-426.

[907] Spiller, M., & Söffker, D. (2021). Stator-Rotor Contact Force Estimation of Rotating Machine. Automation, 2(3), 83-97.

[908] Spinelli, E. M., & Mayosky, M. A. (2005). Two-electrode biopotential measurements: power line interference analysis. IEEE Transactions on biomedical engineering, 52(8), 1436-1442.

[909] Srikanth, T., Napper, S. A., & Gu, H. (2002). Bottom-up approach to uniform feature extraction in time and frequency domains for single lead ECG signal. International Journal of BioElectromagnetism, 4(1).

[910] Steinwachs, C. F. (2020). Higgs field in cosmology. In One Hundred Years of Gauge Theory (pp. 253-287). Springer, Cham.

[911] Stocker, M., Röger, S., & Koslowski, B. (2015). The hydrogen molecule in a vice. arXiv preprint arXiv:1503.07702. Storch, I. R. (2015). Temperature-dependent mechanics in suspended graphene systems. Cornell University.

[912] Stuchlík, Z., Slaný, P., Török, G., & Abramowicz, M. A. (2005). Aschenbach effect: Unexpected topology changes in the motion of particles and fluids orbiting rapidly rotating Kerr black holes. Physical Review D, 71(2), 024037.

[913] Stumpf, P., & Nagy, I. (2013, June). Study of doubly fed induction generator for wind power application. In 2013 International Conference on Clean Electrical Power (ICCEP) (pp. 368-375). IEEE.

[914] Sukharev, O. (2016). Structural modelling of economic growth: Technological changes. Megatrend revija, 13(1), 53-82.

[915] Sukhomlinov, S. V., & Müser, M. H. Cauchy violation and charge transfer potentials.

[916] Sun, H. (2020). Optimization of velocity and displacement measurement with optical encoder and laser self-mixing interferometry (Doctoral dissertation, Universitätsbibliothek der TU München).

[917] Svanberg, K. (2007). MMA and GCMMA-two methods for nonlinear optimization. vol, 1, 1-15.

[918] Swenson, C., Lackey, H. H., Reece, E. J., Harris, J. M., Heemstra, J., & Peterson, E. M. (2021). Evaluating the Effect of Ionic Strength on PNA: DNA Duplex Formation Kinetics. RSC Chemical Biology.

[919] Szatylowicz, H., Stasyuk, O. A., & Krygowski, T. M. (2015). Substituent effects in heterocyclic systems. Advances in Heterocyclic Chemistry, 116, 137-192.

[920] Tabat, N., Edelman, H. S., Song, D., & Vogt, T. (2015). Macroscopic spin-orbit coupling in non-uniform magnetic fields. Applied Physics Letters, 106(9), 092405.

[921] Tahmasian, S., Jafaryzad, A., Bulzoni, N. L., & Staples, A. E. (2020). Dynamic Analysis and Design Optimization of a Drag-Based Vibratory Swimmer. Fluids, 5(1), 38.

[922] Tai, T. D. (2008). Remarks on PT-norm in PT-symmetric quantum mechanics. arXiv preprint math-ph/0502009.

[923] Takahashi, S. (2018). Does State-Dependent Wage Setting Generate Multiple Equilibria?. KIER Discussion Paper, 991, 1-50.

[924] Tang, Y., Tian, Y., Lu, J., Li, P., & Zhou, J. (2018). Deep progressive reinforcement learning for skeleton-based action recognition. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (pp. 5323-5332).

[925] Tani, J., Mishra, S., & Wen, J. T. (2014, October). On derivative sampling from image blur for reconstruction of band-limited signals. In Dynamic Systems and Control Conference (Vol. 46209, p. V003T45A004). American Society of Mechanical Engineers.

[926] Tarasov, V. F., Zaripov, R. B., Solovarov, N. K., Sukhanov, A. A., & Zharikov, E. V. E. (2011). Observation of electric quadrupole spin resonance of Ho 3+ impurity ions in synthetic forsterite. JETP Letters, 93(5), 282-286.

[927] Tavani, D., & Zamparelli, L. (2017). Endogenous technical change in alternative theories of growth and distribution. Journal of Economic Surveys, 31(5), 1272-1303.

[928] Tenison, I., Francis, S., & Rish, I. (2021). Gradient Masked Federated Optimization. arXiv preprint arXiv:2104.10322.

[929] THAPA, U., Sultana, N., & Ismail, K. (2020). Studies on aggregation and counterion binding nature of didodecyldimethylammonium bromide in presence of added salts. Indian Journal of Chemistry-Section A (IJCA), 56(11), 1122-1131.

[930] Thöni, C., & Gächter, S. (2015). Peer effects and social preferences in voluntary cooperation: A theoretical and experimental analysis. Journal of Economic Psychology, 48, 72-88.

[931] Thürlimann, C. M., Dürrenmatt, D. J., & Villez, K. (2018). Soft-sensing with qualitative trend analysis for wastewater treatment plant control. Control Engineering Practice, 70, 121-133.

[932] Thürlimann, C. M., Dürrenmatt, D. J., & Villez, K. Qualitative Trend Analysis as a Tool for pH-based Ammonium Soft-Sensor in Full-Scale Continuous WWTP.

[933] Thwaites, G. (2015). Why are real interest rates so low? Secular stagnation and the relative price of investment goods.

[934] Tiwari, A., & Khanna, G. (2002, March). Series of abstractions for hybrid automata. In International Workshop on Hybrid Systems: Computation and Control (pp. 465-478). Springer, Berlin, Heidelberg.

[935] Tompary, A., Al-Aidroos, N., & Turk-Browne, N. B. (2018). Attending to what and where: Background connectivity integrates categorical and spatial attention. Journal of cognitive neuroscience, 30(9), 1281-1297.

[936] Tonni, L. (2021). Personal income distribution and the endogeneity of the demand regime.

[937] Tramèr, F., Kurakin, A., Papernot, N., Goodfellow, I., Boneh, D., & McDaniel, P. (2017). Ensemble adversarial training: Attacks and defenses. arXiv preprint arXiv:1705.07204.

[938] Tran, F., Baudesson, G., Carrete, J., Madsen, G. K., Blaha, P., Schwarz, K., & Singh, D. J. (2020). Shortcomings of meta-GGA functionals when describing magnetism. Physical Review B, 102(2), 024407.

[939] Trevethan, M., & Chanson, H. (2005). A note on burst event detection in unsteady natural flows.

[940] Triana, S. A., Moravveji, E., Pápics, P. I., Aerts, C., Kawaler, S. D., & Christensen-Dalsgaard, J. (2015). The internal rotation profile of the B-type star KIC 10526294 from frequency inversion of its dipole gravity modes. The Astrophysical Journal, 810(1), 16.

[941] Triana, S. A., Moravveji, E., Pápics, P., Aerts, C., Kawaler, S. D., & Christensen-Dalsgaard, J. (2015). The internal rotation profile of the B-type star KIC10526294 from frequency inversion of its dipole gravity modes and statistical model comparison. arXiv preprint arXiv:1507.04574.

[942] Tribelsky, M. I., & Anisimov, S. I. (2001). Hydrodynamic waves in regions with smooth loss of convexity of isentropes: General phenomenological theory. Physical review letters, 86(18), 4037.

[943] Tridimas, G. (2011). The political economy of power-sharing. European Journal of Political Economy, 27(2), 328-342.

[944] Tron, R., & Daniilidis, K. (2014). On the quotient representation for the essential manifold. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (pp. 1574-1581).

[945] Trujillo-Pino, A., Krissian, K., Alemán-Flores, M., & Santana-Cedrés, D. (2013). Accurate subpixel edge location based on partial area effect. Image and Vision Computing, 31(1), 72-90.

[946] Trukhanov, S. V. (2011). Peculiarities of magnetic phase separation in anion-deficient La 0.70 Sr 0.30 MnO 2.85 manganite. Physics of the Solid State, 53(9), 1845-1850.

[947] Tsalicoglou, I., & Phillipsen, B. (2010, September). Design of radial turbine meridional profiles using particle swarm optimization. In 2nd International Conference on Engineering Optimization.

[948] Tsurikov, D. E., & Yafyasov, A. M. (2010). Differential capacitance of a semiconductor film. Semiconductors, 44(10), 1292-1296.

[949] Turaev, R. N., Turaev, K. N., & Nortojiev, U. R. (2020). Florin problem for quasilinear diffusion equation taking into account nonlinear convection. Solid State Technology, 63(6), 6640-6652.

[950] Tursunov, A., Stuchlík, Z., & Kološ, M. (2016). Circular orbits and related quasiharmonic oscillatory motion of charged particles around weakly magnetized rotating black holes. Physical Review D, 93(8), 084012.

[951] Tzafestas, S. G., & Rigatos, G. G. (1999). A simple robust sliding-mode fuzzy-logic controller of the diagonal type. Journal of Intelligent and Robotic Systems, 26(3), 353-388.

[952] ur Rahman, F., Pamula, R., Boora, A., Sun, X., & Sathe, V. (2019, February). 19.1 Computationally Enabled Total Energy Minimization Under Performance Requirements for a Voltage-Regulated 0.38-to-0.58 V Microprocessor in 65nm CMOS. In 2019 IEEE International Solid-State Circuits Conference-(ISSCC) (pp. 312-314). IEEE.

[953] Urbánková, J. (2017). The Macro-finance Model of the Czech Economy. Urbano, J., Lloréns, J., Morato, J., & Sánchez-Cuadrado, S. (2012). MIREX 2012 symbolic melodic similarity: Hybrid sequence alignment with geometric representations. Music Information Retrieval Evaluation eXchange, 3-6.

[954] Ushchev, P., & Zenou, Y. (2017). Technology Adoption and Social Norms.

[955] Ustinov, D. (2021, May). The Research Of Increase Of Torque Of Synchronous Motor In The Field Of Small Slip Values. In 2021 XVIII International Scientific Technical Conference Alternating Current Electric Drives (ACED) (pp. 1-6). IEEE.

[956] Valishevsky, A. (2002). Adaptive learning algorithm for hybrid fuzzy system. In Proceedings of the International Scientific Conference Traditions and Innovations in Sustainable Development of Society (pp. 281-288).

[957] Van den Berg, A., Herings, P. J. J., & Peters, H. (2017). The economic order decision with continuous dynamic pricing and batch supply. Operations Research Letters, 45(4), 371-376.

[958] Vashistha, M., Samanta, C., & Chakraborty, A. (2021). Transition time estimation for δ-function coupling in two state problem: An analytically solvable model. Chemical Physics Letters, 770, 138436.

[959] Vazquez, D. M., Rubio, J. J., & Pacheco, J. (2012). Characterisation framework for epileptic signals. IET Image Processing, 6(9), 1227-1235.

[960] Venegas, P., Perán, J., Usamentiaga Fernández, R., & Sáez de Ocáriz, I. (2018). Development of Virtual Illumination Functions for Thermographic NDT. QIRT 2018 Proceedings.

[961] Verwichte, E., Foullon, C., & Nakariakov, V. M. (2006). Fast magnetoacoustic waves in curved coronal loops-I. Trapped and leaky modes. Astronomy & Astrophysics, 446(3), 1139-1149.

[962] Villez, K. (2014). Qualitative trend analysis for process monitoring and supervision based on likelihood optimization: state-of-the-art and current limitations. IFAC Proceedings Volumes, 47(3), 7140-7145.

[963] Villez, K., & Habermacher, J. (2016). Shape anomaly detection for process monitoring of a sequencing batch reactor. Computers & Chemical Engineering, 91, 365-379.

[964] Villez, K., Venkatasubramanian, V., & Rengaswamy, R. (2013). Generalized shape constrained spline fitting for qualitative analysis of trends. Computers & chemical engineering, 58, 116-134.

[965] Viola, P., & Jones, M. (2001, December). Rapid object detection using a boosted cascade of simple features. In Proceedings of the 2001 IEEE computer society conference on computer vision and pattern recognition. CVPR 2001 (Vol. 1, pp. I-I). Ieee.

[966] Visschers, L. O. D. E. W. I. J. K. (2007). Employment uncertainty and wage contracts in frictional labor markets. Mimeo, University of Pennsylvania.

[967] Vogel, R. M., & Kroll, C. N. (2020). A comparison of estimators of the conditional mean under non-stationary conditions. Advances in Water Resources, 143, 103672.

[968] Volker, H., Jost, P., & Wuttig, M. (2015). Low‐Temperature Transport in Crystalline Ge1Sb2Te4. Advanced Functional Materials, 25(40), 6390-6398.

[969] Volkov, V., Germer, R., Oneshko, A., & Oralov, D. (2011). Objects description and extraction by the use of straight line segments in digital images. In Proceedings of the International Conference on Image Processing, Computer Vision, and Pattern Recognition (IPCV) (p. 1). The Steering Committee of The World Congress in Computer Science, Computer Engineering and Applied Computing (WorldComp).

[970] Wagner, K. R. (2019). Adaptation and adverse selection in markets for natural disaster insurance. Available at SSRN, 3467329.

[971] Wahid, M. F., Tafreshi, R., Al-Sowaidi, M., & Langari, R. (2018). Subject-independent hand gesture recognition using normalization and machine learning algorithms. Journal of computational science, 27, 69-76.

[972] Walsh, C. J., Pasch, K., & Herr, H. (2006, October). An autonomous, underactuated exoskeleton for load-carrying augmentation. In 2006 IEEE/RSJ International Conference on Intelligent Robots and Systems (pp. 1410-1415). IEEE.

[973] Wang, A., Jin, W., Chen, W., Feng, R., & Xu, C. (2018). Bifurcation and chaotic vibration of frictional chatter in turning process. Advances in Mechanical Engineering, 10(4), 1687814018771262.

[974] Wang, D., Emhemed, A. A., & Burt, G. M. (2019). Improved voltage-based protection scheme for an LVDC distribution network interfaced by a solid state smart transformer. IET Generation, Transmission & Distribution, 13(21), 4821-4829.

[975] Wang, D., Ji, M., Wang, Y., Wang, H., & Fang, L. (2019, September). SPI-Optimizer: an integral-Separated PI Controller for Stochastic Optimization. In 2019 IEEE International Conference on Image Processing (ICIP) (pp. 2129-2133). IEEE.

[976] Wang, D., Liu, Y., Tang, W., Shang, F., Liu, H., Sun, Q., & Jiao, L. (2019, November). signADAM++: Learning Confidences for Deep Neural Networks. In 2019 International Conference on Data Mining Workshops (ICDMW) (pp. 186-195). IEEE.

[977] Wang, F., Fan, Q., & Wang, K. (2018). Asymmetric multiscale multifractal detrended cross-correlation analysis for the 1999–2000 California electricity market. Nonlinear Dynamics, 91(3), 1527-1540.

[978] Wang, H., & Raj, B. (2017). On the origin of deep learning. arXiv preprint arXiv:1702.07800.

[979] Wang, H., Wang, L., & Xu, X. G. (2016). Scattering-type scanning near-field optical microscopy with low-repetition-rate pulsed light source through phase-domain sampling. Nature communications, 7(1), 1-8.

[980] Wang, K., Meyhofer, E., & Reddy, P. (2020). Thermal and thermoelectric properties of molecular junctions. Advanced Functional Materials, 30(8), 1904534.

[981] Wang, Q. (2013). Raman spectroscopic characterization and analysis of agricultural and biological systems.

[982] Wang, S., Ren, D., Chen, L., Fan, W., Sun, J., & Naoi, S. (2016). On study of the binarized deep neural network for image classification. arXiv preprint arXiv:1602.07373.

[983] Wang, X., Doretto, G., Sebastian, T., Rittscher, J., & Tu, P. (2007, October). Shape and appearance context modeling. In 2007 ieee 11th international conference on computer vision (pp. 1-8). Ieee.

[984] Wang, Y., Jiang, Z., Chen, X., Xu, P., Zhao, Y., Lin, Y., & Wang, Z. (2019). E2-train: Training state-of-the-art cnns with over 80% energy savings. arXiv preprint arXiv:1910.13349.

[985] Wang, Y., You, J. W., Lan, Z., & Panoiu, N. C. (2020, April). Topological valley plasmon transport in graphene bi-layer metasurfaces: applications to sensing nanodevices. In Metamaterials XII (Vol. 11344, p. 113441E). International Society for Optics and Photonics.

[986] Wang, Z., Meng, H., & Fu, J. (2009). Method for extracting Bessel-structured light fringes’ center lines in a triangulation measurement system. Optics & Laser Technology, 41(6), 809-814.

[987] Waris, A., & Kamavuako, E. N. (2018). Effect of threshold values on the combination of emg time domain features: Surface versus intramuscular emg. Biomedical Signal Processing and Control, 45, 267-273.

[988] Watanabe, R., Gono, T., Yamagata, T., & Fujisawa, N. (2015). Three-dimensional flow structure in highly buoyant jet by scanning stereo PIV combined with POD analysis. International Journal of Heat and Fluid Flow, 52, 98-110.

[989] Wei, Q., Yang, G., & Peng, X. (2020). Auxetic tetrahex carbon with ultrahigh strength and a direct band gap. Physical Review Applied, 13(3), 034065.

[990] Weill, C. M. J. (2017). A cost-benefit approach for prioritizing invasive species. Weld, D. S. (1990). Exaggeration. Artificial Intelligence, 43(3), 311-368.

[991] Wen, W., Xu, C., Yan, F., Wu, C., Wang, Y., Chen, Y., & Li, H. (2017). Terngrad: Ternary gradients to reduce communication in distributed deep learning. arXiv preprint arXiv:1705.07878.

[992] Weynans, L., & Magni, A. (2013). Consistency, accuracy and entropy behaviour of remeshed particle methods. ESAIM: Mathematical Modelling and Numerical Analysis, 47(1), 57-81.

[993] Wheeler, M. H. (2015). Solitary water waves of large amplitude generated by surface pressure. Archive for Rational Mechanics and Analysis, 218(2), 1131-1187.

[994] Wilkinson, B. H., Ivany, L. C., & Drummond, C. N. (2021). Estimating vertebrate biodiversity using the tempo of taxonomy–a view from Hubbert’s peak. Biological Journal of the Linnean Society, 134(2), 402-422.

[995] Willers, C., Thiele, U., Archer, A. J., Lloyd, D. J., & Kamps, O. (2020). Adaptive stochastic continuation with a modified lifting procedure applied to complex systems. Physical Review E, 102(3), 032210.

[996] Wu, J., Luo, H., Li, H., Su, B., Wang, Y., & Li, Z. (2020). The influence of hydrothermal aging on the dynamic friction model of rubber seals. Polymers, 12(1), 102.

[997] Wu, Z. (2016). Registration and clustering of functional observations (Doctoral dissertation, University of South Carolina).

[998] Wulsin, D. F., Gupta, J. R., Mani, R., Blanco, J. A., & Litt, B. (2011). Modeling electroencephalography waveforms with semi-supervised deep belief nets: fast classification and anomaly measurement. Journal of neural engineering, 8(3), 036015.

[999] Xia, L. C., Ai, D., Cram, J. A., Liang, X., Fuhrman, J. A., & Sun, F. (2015). Statistical significance approximation in local trend analysis of high-throughput time-series data using the theory of Markov chains. BMC bioinformatics, 16(1), 1-14.

[1000] Xia, L. D., Popescu, M. D., Doyle, J. G., & Giannikakis, J. (2005). Time series study of EUV spicules observed by SUMER/SoHO. Astronomy & Astrophysics, 438(3), 1115-1122.

[1001] Xia, Z., Yuan, C., Lv, R., Sun, X., Xiong, N. N., & Shi, Y. Q. (2018). A novel weber local binary descriptor for fingerprint liveness detection. IEEE Transactions on Systems, Man, and Cybernetics: Systems, 50(4), 1526-1536.

[1002] Xiao, Y. Q. (2017). Passivity Enforcement on Loewner Matrix Based Descriptor System Models (Doctoral dissertation, McGill University (Canada)).

[1003] Xidias, E., Koutkalaki, Z., Papagiannis, P., Papanikos, P., & Azariadis, P. (2015, October). Foot Plantar Pressure Estimation Using Artificial Neural Networks. In IFIP International Conference on Product Lifecycle Management (pp. 23-32). Springer, Cham.

[1004] Xie, C., Zhang, Z., Zhou, Y., Bai, S., Wang, J., Ren, Z., & Yuille, A. L. (2019). Improving transferability of adversarial examples with input diversity. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (pp. 2730-2739).

[1005] Xie, L., Henkel, C., Stol, K., & Xu, W. (2018). Power-minimization and energy-reduction autonomous navigation of an omnidirectional Mecanum robot via the dynamic window approach local trajectory planning. International Journal of Advanced Robotic Systems, 15(1), 1729881418754563.

[1006] Xin, L., Pengli, L., Yang, L., & Wang, C. (2019). Back-Stepping Fuzzy Adaptive Sliding Mode Trajectory Tracking Control for Wall-Climbing Robot. J. Comput., 14(12), 662-679.

[1007] Xue, L. (2020). Regularized regression in generalized linear measurement error models with instrumental variables-variable selection and parameter estimation.

[1008] Xue, Y., Xie, M., Yang, Z., & Roshan, U. (2020). Defending against black-box adversarial attacks with gradient-free trained sign activation neural networks.

[1009] Yamamoto, T., Noguchi, M., Maki, Y., & Dobashi, T. (2020). Gel Volume Near the Critical Point of Binary Mixture Isobutyric Acid–Water. Gels, 6(3), 30.

[1010] Yan, J. (2018). Kinetics and Ensemble Dynamics of Colloidal Ellipsoids near an AC Electrode.

[1011] Yang, C., Feinen, C., Tiebe, O., Shirahama, K., & Grzegorzek, M. (2016). Shape-based object matching using interesting points and high-order graphs. Pattern Recognition Letters, 83, 251-260.

[1012] Yang, G., & Xie, H. (2005). An approach to compress information of computer-synthesis hologram with shape adaptive binary tree predictive coding and fast Fourier transform technique. IEEJ Transactions on Electronics, Information and Systems, 125(1), 99-105.

[1013] Yang, Z. H. (2017). On converses of some comparison inequalities for homogeneous means. Hacettepe Journal of Mathematics and Statistics, 46(4), 629-644.

[1014] Yang, Z. Revisiting Jansen et al.’s Modified Cournot Model of the European Union Natural Gas Market

[1015] Zaifu Yang, Rong Zhang, and Zongyi Zhang. Yin, Y., Wan, Z., Chen, H., Liu, L., Deng, H., Meng, X., & Wu, J. (2020). Background timing mismatch calibration technique for TIADC in Nyquist frequency band. Electronics Letters, 56(15), 753-756.

[1016] Ying, W., Sang, J., & Yu, J. (2020). Locality-constrained discrete graph hashing. Neurocomputing, 398, 566-573.

[1017] Yılmaz, M., Potas, N., & Topçu, B. (2015). Reliability properties of systems with three dependent components. In Chaos, Complexity and Leadership 2013 (pp. 117-127). Springer, Cham.

[1018] Yong, K. J., Silva, C. F., & Polifke, W. (2021). A categorization of marginally stable thermoacoustic modes based on phasor diagrams. Combustion and Flame, 228, 236-249.

[1019] Yuan, J., Feng, J., & Cho, S. K. (2021). Dielectrowetting Control of Capillary Force (Cheerios Effect) between Floating Objects and Wall for Dielectric Fluid. Micromachines, 12(3), 341.

[1020] Yuan, W., Li, L., Zhang, D. G., & Hong, J. Z. (2016). New method for oblique impact dynamics research of a flexible beam with large overall motion considering impact friction force. Acta Mechanica Sinica, 32(4), 720-730.

[1021] Zaatiti, H. (2018). Modeling and qualitative simulation of hybrid systems (Doctoral dissertation, Université Paris-Saclay).

[1022] Zainuddin, Z., Mahat, N., & Hassan, Y. A. (2005). Improving the convergence of the backpropagation algorithm using local adaptive techniques.

[1023] Zamanidoost, E., Bayat, F. M., Strukov, D., & Kataeva, I. (2015, May). Manhattan rule training for memristive crossbar circuit pattern classifiers. In 2015 IEEE 9th International Symposium on Intelligent Signal Processing (WISP) Proceedings (pp. 1-6). IEEE.

[1024] Zanchi, M. A Machine Learning Approach to Breaststroke.

[1025] Zarubin, V. S., Kuvyrkin, G. N., & Savel’eva, I. Y. (2016). Critical and optimal thicknesses of thermal insulation in radiative-convective heat transfer. High Temperature, 54(6), 831-836.

[1026] Zegeling, P. A., & Iqbal, S. (2018). Nonstandard finite differences for a truncated Bratu–Picard model. Applied Mathematics and Computation, 324, 266-284.

[1027] Zeiler, M. D. (2012). Adadelta: an adaptive learning rate method. arXiv preprint arXiv:1212.5701.

[1028] Zet, C., Fosalau, C., Westerberg, L., & Spohr, R. (2004). Real time digital pulse processing applied to heavy ion irradiation. IMEKO TC4 Symposium, Athens.

[1029] Zhai, S., Xia, T., Tan, M., & Wang, S. (2013). Direct 0-1 loss minimization and margin maximization with boosting. Advances in Neural Information Processing Systems, 26, 872-880.

[1030] Zhang, C., & Rossi, C. (2019). Effects of elastic hinges on input torque requirements for a motorized indirect-driven flapping-wing compliant transmission mechanism. IEEE Access, 7, 13068-13077.

[1031] Zhang, D., Ma, M., & Arola, D. D. (2002). Fringe skeletonizing using an improved derivative sign binary method. Optics and lasers in engineering, 37(1), 51-62.

[1032] Zhang, H., Winner, H., & Li, W. (2009). Comparison between skyhook and minimax control strategies for semi-active suspension system. World Academy of Science, Engineering and Technology, 55(5), 618-621.

[1033] Zhang, L., Liu, P., & Choi, Y. H. (2020). Semantic-preserving Reinforcement Learning Attack Against Graph Neural Networks for Malware Detection. arXiv preprint arXiv:2009.05602.

[1034] Zhang, P., Liu, S., & Xu, Q. (2005). Identifying Doppler velocity contamination caused by migrating birds. Part I: Feature extraction and quantification. Journal of Atmospheric and Oceanic Technology, 22(8), 1105-1113.

[1035] Zhang, Q., Wu, H., Yao, P., Zhang, W., Gao, B., Deng, N., & Qian, H. (2018). Sign backpropagation: An on-chip learning algorithm for analog RRAM neuromorphic computing systems. Neural Networks, 108, 217-223.

[1036] Zhang, T., & Huang, H. (2018). A lower-back robotic exoskeleton: Industrial handling augmentation used to provide spinal support. IEEE Robotics & Automation Magazine, 25(2), 95-106.

[1037] Zhang, X., & Foo, G. H. B. (2015). A constant switching frequency-based direct torque control method for interior permanent-magnet synchronous motor drives. IEEE/ASME Transactions on Mechatronics, 21(3), 1445-1456.

[1038] Zhao, D., Ge, W., Mo, X., Liu, B., & Dong, D. (2019). Design of a new hydraulic accumulator for transient large flow compensation. Energies, 12(16), 3104.

[1039] Zhao, F., Grossmann, I. E., García‐Muñoz, S., & Stamatis, S. D. (2021). Flexibility index of black‐box models with parameter uncertainty through derivative‐free optimization. AIChE Journal, 67(5), e17189.

[1040] Zhao, W., Pashkevich, A., Klimchik, A., & Chablat, D. (2021). Elastostatic Modeling of Multi-Link Flexible Manipulator Based on Two-Dimensional Dual-Triangle Tensegrity Mechanism. Journal of Mechanisms and Robotics, 14(2), 021002.

[1041] Zheng, J. (2018). Willingness to pay for reductions in morbidity risks under anticipated regret. Available at SSRN 3176900.

[1042] Zhmud, V., & Dimitrov, L. (2017). Investigation of the Causes of Noise in the Result of Multiple Digital Derivations of Signals.

[1043] Zhou, D., & Xiao, Z. G. (2015). Phase structures of the black D p-D (p+ 4)-brane system in various ensembles I: thermal stability. Journal of High Energy Physics, 2015(7), 1-43.

[1044] Zhou, M., Zhang, Y., Ji, K., & Zhu, D. (2017). Model reference adaptive control based on KP model for magnetically controlled shape memory alloy actuators. Journal of applied biomaterials & functional materials, 15(1_suppl), 31-37.

[1045] Zhu, H., Wang, R., Jin, Y., Liang, K., & Ning, J. (2021). Distributed additive encryption and quantization for privacy preserving federated deep learning. Neurocomputing, 463, 309-327.

[1046] Zhu, Y., Zhang, Y., Bonev, B., & Yuille, A. L. (2015). Modeling deformable gradient compositions for single-image super-resolution. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (pp. 5417-5425).

[1047] Zlosnikas, V., & Baskys, A. (2008). Integral controller for the plants with the asymmetric dynamics. Elektronika ir Elektrotechnika, 81(1), 15-18.

[1048] Zou, D., Cao, Y., Li, Y., & Gu, Q. (2021). Understanding the Generalization of Adam in Learning Neural Networks with Proper Regularization. arXiv preprint arXiv:2108.11371.

[1049] Zweifel, P., & Courbage, C. (2016). Long-term care: Is there crowding out of informal care, private insurance as well as saving?. Asia-Pacific Journal of Risk and Insurance, 10(1), 107-132.

[1050] Zymaroieva, A., Zhukov, O., & Romanchuck, L. (2020). The spatial patterns of long-term temporal trends in yields of soybean (Glycine max (L.) Merril) in the Central European Mixed Forests (Polissya) and East European Forest Steppe ecoregions within Ukraine. Journal of Central European Agriculture, 21(2), 320-332.