Representing nonlinear functions involving vectors

In summary: Multivariable calculus is the field of calculus that deals with functions between differentiable manifolds, or more generally, vector spaces over differentiable manifolds.
  • #1
Prez Cannady
21
2
I'm having trouble finding textbook material on nonlinear functions on vectors. Just as I could define a function ##f## such that:

$$f(x) = cos(x)$$

I'd like to write something like:

$$f(\vec{x}) = \begin{pmatrix}
f_1(x_1) \\
f_2(x_2) \\
... \\
f_n(x_n)
\end{pmatrix} $$

where ##f_i## is some nonlinear function on ##x_i## like ##cos(x_i)##.

Or, if you will...

$$f(\vec{x}) = f_1(x_1) + f_2(x_2) + ... + f_n(x_n)$$

or even more wild linear and non-linear manipulations of ##x_i##.Would appreciate any help in finding resources on this topic. I don't even know what the name of this particular area of interest is, assuming it has one.
 
Physics news on Phys.org
  • #2
Prez Cannady said:
I'm having trouble finding textbook material on nonlinear functions on vectors. Just as I could define a function ##f## such that:

$$f(x) = cos(x)$$

I'd like to write something like:

$$f(\vec{x}) = \begin{pmatrix}
f_1(x_1) \\
f_2(x_2) \\
... \\
f_n(x_n)
\end{pmatrix} $$

where ##f_i## is some nonlinear function on ##x_i## like ##cos(x_i)##.

Or, if you will...

$$f(\vec{x}) = f_1(x_1) + f_2(x_2) + ... + f_n(x_n)$$

or even more wild linear and non-linear manipulations of ##x_i##.Would appreciate any help in finding resources on this topic. I don't even know what the name of this particular area of interest is, assuming it has one.

Isn't this done in Standard (multivariate) Calculus?
 
  • #3
Prez Cannady said:
Would appreciate any help in finding resources on this topic. I don't even know what the name of this particular area of interest is, assuming it has one.
The best term to use to look for resources on that is multivariable calculus.

It sounds like you are interested in functions where the domain is ##\mathbb R^n## (ie it is a function of ##n## real variables) and the range is ##\mathbb R##. 'Multivariable calculus' is the usual name for that field.

When that extends further to ranges in the vector space ##\mathbb R^m## the term vector calculus is often used. Much of what you'll find there is about 3-dimensional space, but other dimensions are covered too. Things like Jacobians and the Implicit Function Theorem come into play. That then leads on towards differential geometry, which includes vector calculus on non-Euclidean manifolds.
 
  • #4
andrewkirk said:
It sounds like you are interested in functions where the domain is ##\mathbb R^n## (ie it is a function of ##n## real variables) and the range is ##\mathbb R##. 'Multivariable calculus' is the usual name for that field.

I'm interested in ##V \rightarrow W## nonlinear transformations on vector spaces (where neither need be the same dimension). I've plenty of multivariable calc texts, but none seem to spend any time on this. I've fewer linear algebra texts, but hopes of finding even an honorable mention were in vain.
 
  • #5
Prez Cannady said:
I'm interested in ##V \rightarrow W## nonlinear transformations on vector spaces (where neither need be the same dimension). I've plenty of multivariable calc texts, but none seem to spend any time on this. I've fewer linear algebra texts, but hopes of finding even an honorable mention were in vain.
But this reference is the standard/canonical example. It may include the linear case ( which you can ignore) but covers the general case, viewing euclidean n-space as a vector space over the reals. That is the only case I am familiar with. Since any n-dimensionsl vector space is, to most effects, the same as euclidean n-space, the advanced calculus approach should cover anything except the very highly specialized.
 
  • #6
WWGD said:
But this reference is the standard/canonical example. It may include the linear case ( which you can ignore) but covers the general case, viewing euclidean n-space as a vector space over the reals. That is the only case I am familiar with. Since any n-dimensionsl vector space is, to most effects, the same as euclidean n-space, the advanced calculus approach should cover anything except the very highly specialized.

"This reference?"
 
  • #7
If you drop the restriction to linear maps then you are essentially talking about arbitrary functions between vector spaces. And since these vector spaces are isomorphic to [itex]\mathbb{R}^n[/itex] or [itex]\mathbb{C}^n[/itex] depending on which scalars you are using you may as well be discussing those spaces. This is the field of real or complex analysis.

Alternatively you can look at the ring of polynomials in [itex]n[/itex] variables or the ring of formal power series in [itex]n[/itex] variables, which would be part of the field of algebra.

Or given an arbitrary [itex]f: V \to V[/itex] you can ask when the group of linear maps [itex]\alpha : V \to V[/itex] such that [itex]f = \alpha \circ f \circ \alpha^{-1}[/itex] is not trivial.

That aside, there's really nothing useful that can be said about arbitrary functions between vector spaces. They're arbitrary; they can do anything.
 
Last edited:
  • #8
Prez Cannady said:
"This reference?"
Sorry, i meant Advanced Calculus.
 
  • #9
Then let me phrase my question this way, and narrowly.

Is there a name for functions that take vectors as arguments and perform non-linear operations on the argument's coefficients? And a method analogous to multiplying square matrices against vectors when performing linear transformations?

And perhaps an example?
 
  • #10
I think I know what you're asking, and "operators" is the closest thing I can think of.

There is analysis, real and complex, aka multivariate analysis, which does have plenty to say about general mappings ##R^n \rightarrow R^m##, which would simply use normal function notation, e.g. ##\vec v = f(\vec w)##. But I don't think that's what you want. I think you want something that looks like a generalization of ##\vec v = A \vec w##. As I said, the only thing I could think of is if ##A## is a nonlinear operator.

Differentiation and Fourier transforming are operators that take functions ##R \rightarrow R## and produce other functions ##R \rightarrow R##. Actually both of those are linear operators that act on infinite-dimensional vector spaces. I haven't used operator notation outside those areas, but I think it's a general concept and I don't see any reason why you couldn't have nonlinear operators. I believe quantum mechanics relies heavily on operator notation, some of them nonlinear (I did actually study QM in school but it's too distant a memory for me to say anything useful about it).

I think I could for instance define an operator which took every element of ##\vec w## and squared it. I could even write it as a matrix. Here's a matrix operator which will square each element of a 2-vector:
##\begin {pmatrix}S&0 \\
0 & S \end {pmatrix}##
where ##S## is an operator that squares a real number. I haven't as I said actually worked with such beasts, but I think you might find fruitful references under "operator theory".
 
  • Like
Likes Prez Cannady
  • #11
To my knowledge, nonlinear functions are the main study in multivariable calculus (and calculus in general). That appears to be the opinion of a few others here. Calculus is the study of change, often when change happens nonlinearly. Differential operators, the various integral theorems, and things like parameterizations and the Frenet-Serret formulas are most useful as tools of analysis for nonlinear functions. In the linear cases, most of the techniques in multivariable calculus aren’t very interesting, or just don’t work. So I don’t know where your multivariable calculus texts are from, but I’m very suspicious about whether or not they’re what you say they are.

It’s not really accurate to say that multivariable calculus is the study of nonlinear functions, though. Such a topic is far too general, and mathematicians often will restrict their study to special subsets of nonlinear functions. In calculus you’re studying functions differentiable except at isolated points, which allows you to give local descriptions by linear approximation. Without this differentiability requirement, even many continuous functions are not well-behaved (see the Weierstrass function). I think there is some proof that the vast majority of functions behave like the Weierstrass function. Also, there is the Cantor function which is differentiable almost everywhere with derivative zero, but takes on every value between zero and one continuously.

The point is, there’s not really a name for what you’re asking about because it’s too broad. I once heard a joke that went, “Classifying problems into linear and non-linear is like classifying the universe into bananas and non-bananas.” There’s not a general name for the nonlinear functions or the study thereof, much like there’s no name for the study of objects which are not bananas.
 
  • #12
Hi, reading this again, I am thinking you, Cannady, may be interested in the Borel or general functional calculus. This is a setup to allow the application of functions to operators, like defining the operation of taking the square root of a matrix, etc.
 
Last edited:
  • Like
Likes Prez Cannady
  • #13
Prez Cannady said:
Then let me phrase my question this way, and narrowly.

Is there a name for functions that take vectors as arguments and perform non-linear operations on the argument's coefficients? And a method analogous to multiplying square matrices against vectors when performing linear transformations?

And perhaps an example?

I still think those concepts are "function" and "evaluation of functions" respectively.

The closest analogue I can think of is tensor algebra, which allows one to write any [itex]f : \mathbb{R}^n \to \mathbb{R}^n[/itex] which is analytic in a neighbourhood of zero as a series [tex]
f(\mathbf{x}) = f(\mathbf{0}) + \sum_{j} A_{ij}x_j + \sum_{j}\sum_{k} B_{ijk}x_jx_k + \sum_{j}\sum_{k}\sum_{l} C_{ijkl} x_jx_kx_l + \cdots[/tex]
 
  • Like
Likes suremarc

1. How do you graph a nonlinear function involving vectors?

To graph a nonlinear function involving vectors, you will need to plot points on a coordinate plane. Start by selecting values for the independent variables and calculating the corresponding dependent variable values. Then, plot each point on the graph and connect them with a smooth curve.

2. What is the difference between a linear and a nonlinear function involving vectors?

A linear function involves variables that are directly proportional to each other, resulting in a straight line when graphed. On the other hand, a nonlinear function involving vectors does not have a constant rate of change and results in a curved line when graphed.

3. How do you determine the domain and range of a nonlinear function involving vectors?

The domain of a nonlinear function involving vectors is the set of all possible values for the independent variables, while the range is the set of all possible values for the dependent variable. To determine the domain and range, you can look at the graph and identify the minimum and maximum values for both the independent and dependent variables.

4. Can a nonlinear function involving vectors have multiple solutions?

Yes, a nonlinear function involving vectors can have multiple solutions. This is because the dependent variable can have different values for a given set of independent variables. These solutions can be represented as different points on the graph of the function.

5. How can you use a nonlinear function involving vectors in real-life situations?

Nonlinear functions involving vectors are commonly used in physics and engineering to model real-life situations such as motion, force, and electric fields. They can also be used in economics to model supply and demand curves, and in biology to model population growth. These functions can provide valuable insights and predictions about real-world phenomena.

Similar threads

Replies
27
Views
1K
Replies
3
Views
1K
  • Calculus and Beyond Homework Help
Replies
2
Views
651
  • Linear and Abstract Algebra
2
Replies
52
Views
2K
Replies
24
Views
2K
  • Set Theory, Logic, Probability, Statistics
Replies
22
Views
2K
Replies
3
Views
1K
  • Quantum Physics
Replies
21
Views
2K
  • Set Theory, Logic, Probability, Statistics
Replies
7
Views
452
  • Linear and Abstract Algebra
Replies
5
Views
1K
Back
Top