Flat attribute : example I don't understand
I am just beginning to learn about attributes of function in mathematica.
I saw the example "Flat". But there is something I don't get :
SetAttributes[fonction, Flat]
fonction[fonction[x]]
(*fonction[x]*)
fonction[x_] := x^2;
fonction[fonction[x]]
(*$RecursionLimit::reclim2: Recursion depth of 1024 exceeded during evaluation of fonction[x].
Hold[fonction[fonction[x]]]*)
Why do I have an error ? Shouldn't it returns me fonction[x]=x^2 because of the flat attribute ?
attributes
add a comment |
I am just beginning to learn about attributes of function in mathematica.
I saw the example "Flat". But there is something I don't get :
SetAttributes[fonction, Flat]
fonction[fonction[x]]
(*fonction[x]*)
fonction[x_] := x^2;
fonction[fonction[x]]
(*$RecursionLimit::reclim2: Recursion depth of 1024 exceeded during evaluation of fonction[x].
Hold[fonction[fonction[x]]]*)
Why do I have an error ? Shouldn't it returns me fonction[x]=x^2 because of the flat attribute ?
attributes
3
Look at the result from justfonction[x]
, you likely want to add the AttributeOneIdentity
.
– chuy
Dec 31 '18 at 17:28
add a comment |
I am just beginning to learn about attributes of function in mathematica.
I saw the example "Flat". But there is something I don't get :
SetAttributes[fonction, Flat]
fonction[fonction[x]]
(*fonction[x]*)
fonction[x_] := x^2;
fonction[fonction[x]]
(*$RecursionLimit::reclim2: Recursion depth of 1024 exceeded during evaluation of fonction[x].
Hold[fonction[fonction[x]]]*)
Why do I have an error ? Shouldn't it returns me fonction[x]=x^2 because of the flat attribute ?
attributes
I am just beginning to learn about attributes of function in mathematica.
I saw the example "Flat". But there is something I don't get :
SetAttributes[fonction, Flat]
fonction[fonction[x]]
(*fonction[x]*)
fonction[x_] := x^2;
fonction[fonction[x]]
(*$RecursionLimit::reclim2: Recursion depth of 1024 exceeded during evaluation of fonction[x].
Hold[fonction[fonction[x]]]*)
Why do I have an error ? Shouldn't it returns me fonction[x]=x^2 because of the flat attribute ?
attributes
attributes
asked Dec 31 '18 at 16:38
StarBucKStarBucK
765213
765213
3
Look at the result from justfonction[x]
, you likely want to add the AttributeOneIdentity
.
– chuy
Dec 31 '18 at 17:28
add a comment |
3
Look at the result from justfonction[x]
, you likely want to add the AttributeOneIdentity
.
– chuy
Dec 31 '18 at 17:28
3
3
Look at the result from just
fonction[x]
, you likely want to add the Attribute OneIdentity
.– chuy
Dec 31 '18 at 17:28
Look at the result from just
fonction[x]
, you likely want to add the Attribute OneIdentity
.– chuy
Dec 31 '18 at 17:28
add a comment |
2 Answers
2
active
oldest
votes
To understand what has happened, let's just define:
ClearAll[f];
SetAttributes[f, {Flat}];
f[x_] := Hold[x];
f[1]
(*Returns Hold[f[1]]*)
The reason for this extra f
in the output is that for a Flat
symbol expressions f[x]
and f[f[x]]
are identical. So, when a pattern-matcher encounters f[1]
it treats the expression as f[f[1]]
and consequently substitutes f[1]
, not 1
, instead of x
in the rhs of the definition. The pattern matcher prefers f[f[1]]
over f[1]
when matching x_
to allow for matching a sequence of arguments as a whole:
f[1, 2]
(*Returns Hold[f[1, 2]]*)
Here the pattern matcher treated f[1, 2]
as f[f[1, 2]]
and replaced x
by f[1, 2]
accordingly.
As chuy has already mentioned in the comments, you can add OneIdentity
attribute to a symbol. Then the pattern-mathcer will prefer f[1]
over f[f[1]]
when matching f[x_]
if there is only one argument inside the expression:
ClearAll[f];
SetAttributes[f, {Flat, OneIdentity}];
f[x_] := Hold[x];
f[1]
f[1, 2]
(*Returns Hold[1] and Hold[f[1, 2]]*)
Note, however, that OneIdentity
attribute will not save your form recursion when there are more than one argument: f[1, 2]
will be matched as f[f[1, 2]]
, f[1, 2]
will be squared, f[1, 2]^2
, and the f[1, 2]
inside the square will again be matched as f[f[1, 2]]
. So, basically, use Flat
attribute only for symbols which really stand for some associative operators or you are likely to get into trouble.
ClearAll[f];
SetAttributes[f, {Flat, OneIdentity}];
f[x_] := x^2;
f[1]
f[1, 2]
(*1
$RecursionLimit::reclim2 bla-bla-bla
Hold[f[1, 2]^2]
*)
add a comment |
The following example may help:
SetAttributes[f, Flat];
Hold[f[f[x]]] /. HoldPattern[f[x_]] :> x^2
The result is:
Hold[f[f[x]]^2]
To see what's happening, we may run
MatchQ[f[a, b], f[_]]
The result is True. Thus we see that f[a,b] is identified as f[f[a,b]]. This is what the attribute Flat does to a function.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "387"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f188643%2fflat-attribute-example-i-dont-understand%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
To understand what has happened, let's just define:
ClearAll[f];
SetAttributes[f, {Flat}];
f[x_] := Hold[x];
f[1]
(*Returns Hold[f[1]]*)
The reason for this extra f
in the output is that for a Flat
symbol expressions f[x]
and f[f[x]]
are identical. So, when a pattern-matcher encounters f[1]
it treats the expression as f[f[1]]
and consequently substitutes f[1]
, not 1
, instead of x
in the rhs of the definition. The pattern matcher prefers f[f[1]]
over f[1]
when matching x_
to allow for matching a sequence of arguments as a whole:
f[1, 2]
(*Returns Hold[f[1, 2]]*)
Here the pattern matcher treated f[1, 2]
as f[f[1, 2]]
and replaced x
by f[1, 2]
accordingly.
As chuy has already mentioned in the comments, you can add OneIdentity
attribute to a symbol. Then the pattern-mathcer will prefer f[1]
over f[f[1]]
when matching f[x_]
if there is only one argument inside the expression:
ClearAll[f];
SetAttributes[f, {Flat, OneIdentity}];
f[x_] := Hold[x];
f[1]
f[1, 2]
(*Returns Hold[1] and Hold[f[1, 2]]*)
Note, however, that OneIdentity
attribute will not save your form recursion when there are more than one argument: f[1, 2]
will be matched as f[f[1, 2]]
, f[1, 2]
will be squared, f[1, 2]^2
, and the f[1, 2]
inside the square will again be matched as f[f[1, 2]]
. So, basically, use Flat
attribute only for symbols which really stand for some associative operators or you are likely to get into trouble.
ClearAll[f];
SetAttributes[f, {Flat, OneIdentity}];
f[x_] := x^2;
f[1]
f[1, 2]
(*1
$RecursionLimit::reclim2 bla-bla-bla
Hold[f[1, 2]^2]
*)
add a comment |
To understand what has happened, let's just define:
ClearAll[f];
SetAttributes[f, {Flat}];
f[x_] := Hold[x];
f[1]
(*Returns Hold[f[1]]*)
The reason for this extra f
in the output is that for a Flat
symbol expressions f[x]
and f[f[x]]
are identical. So, when a pattern-matcher encounters f[1]
it treats the expression as f[f[1]]
and consequently substitutes f[1]
, not 1
, instead of x
in the rhs of the definition. The pattern matcher prefers f[f[1]]
over f[1]
when matching x_
to allow for matching a sequence of arguments as a whole:
f[1, 2]
(*Returns Hold[f[1, 2]]*)
Here the pattern matcher treated f[1, 2]
as f[f[1, 2]]
and replaced x
by f[1, 2]
accordingly.
As chuy has already mentioned in the comments, you can add OneIdentity
attribute to a symbol. Then the pattern-mathcer will prefer f[1]
over f[f[1]]
when matching f[x_]
if there is only one argument inside the expression:
ClearAll[f];
SetAttributes[f, {Flat, OneIdentity}];
f[x_] := Hold[x];
f[1]
f[1, 2]
(*Returns Hold[1] and Hold[f[1, 2]]*)
Note, however, that OneIdentity
attribute will not save your form recursion when there are more than one argument: f[1, 2]
will be matched as f[f[1, 2]]
, f[1, 2]
will be squared, f[1, 2]^2
, and the f[1, 2]
inside the square will again be matched as f[f[1, 2]]
. So, basically, use Flat
attribute only for symbols which really stand for some associative operators or you are likely to get into trouble.
ClearAll[f];
SetAttributes[f, {Flat, OneIdentity}];
f[x_] := x^2;
f[1]
f[1, 2]
(*1
$RecursionLimit::reclim2 bla-bla-bla
Hold[f[1, 2]^2]
*)
add a comment |
To understand what has happened, let's just define:
ClearAll[f];
SetAttributes[f, {Flat}];
f[x_] := Hold[x];
f[1]
(*Returns Hold[f[1]]*)
The reason for this extra f
in the output is that for a Flat
symbol expressions f[x]
and f[f[x]]
are identical. So, when a pattern-matcher encounters f[1]
it treats the expression as f[f[1]]
and consequently substitutes f[1]
, not 1
, instead of x
in the rhs of the definition. The pattern matcher prefers f[f[1]]
over f[1]
when matching x_
to allow for matching a sequence of arguments as a whole:
f[1, 2]
(*Returns Hold[f[1, 2]]*)
Here the pattern matcher treated f[1, 2]
as f[f[1, 2]]
and replaced x
by f[1, 2]
accordingly.
As chuy has already mentioned in the comments, you can add OneIdentity
attribute to a symbol. Then the pattern-mathcer will prefer f[1]
over f[f[1]]
when matching f[x_]
if there is only one argument inside the expression:
ClearAll[f];
SetAttributes[f, {Flat, OneIdentity}];
f[x_] := Hold[x];
f[1]
f[1, 2]
(*Returns Hold[1] and Hold[f[1, 2]]*)
Note, however, that OneIdentity
attribute will not save your form recursion when there are more than one argument: f[1, 2]
will be matched as f[f[1, 2]]
, f[1, 2]
will be squared, f[1, 2]^2
, and the f[1, 2]
inside the square will again be matched as f[f[1, 2]]
. So, basically, use Flat
attribute only for symbols which really stand for some associative operators or you are likely to get into trouble.
ClearAll[f];
SetAttributes[f, {Flat, OneIdentity}];
f[x_] := x^2;
f[1]
f[1, 2]
(*1
$RecursionLimit::reclim2 bla-bla-bla
Hold[f[1, 2]^2]
*)
To understand what has happened, let's just define:
ClearAll[f];
SetAttributes[f, {Flat}];
f[x_] := Hold[x];
f[1]
(*Returns Hold[f[1]]*)
The reason for this extra f
in the output is that for a Flat
symbol expressions f[x]
and f[f[x]]
are identical. So, when a pattern-matcher encounters f[1]
it treats the expression as f[f[1]]
and consequently substitutes f[1]
, not 1
, instead of x
in the rhs of the definition. The pattern matcher prefers f[f[1]]
over f[1]
when matching x_
to allow for matching a sequence of arguments as a whole:
f[1, 2]
(*Returns Hold[f[1, 2]]*)
Here the pattern matcher treated f[1, 2]
as f[f[1, 2]]
and replaced x
by f[1, 2]
accordingly.
As chuy has already mentioned in the comments, you can add OneIdentity
attribute to a symbol. Then the pattern-mathcer will prefer f[1]
over f[f[1]]
when matching f[x_]
if there is only one argument inside the expression:
ClearAll[f];
SetAttributes[f, {Flat, OneIdentity}];
f[x_] := Hold[x];
f[1]
f[1, 2]
(*Returns Hold[1] and Hold[f[1, 2]]*)
Note, however, that OneIdentity
attribute will not save your form recursion when there are more than one argument: f[1, 2]
will be matched as f[f[1, 2]]
, f[1, 2]
will be squared, f[1, 2]^2
, and the f[1, 2]
inside the square will again be matched as f[f[1, 2]]
. So, basically, use Flat
attribute only for symbols which really stand for some associative operators or you are likely to get into trouble.
ClearAll[f];
SetAttributes[f, {Flat, OneIdentity}];
f[x_] := x^2;
f[1]
f[1, 2]
(*1
$RecursionLimit::reclim2 bla-bla-bla
Hold[f[1, 2]^2]
*)
edited Jan 1 at 9:34
answered Dec 31 '18 at 17:56
Anton.SakovichAnton.Sakovich
52628
52628
add a comment |
add a comment |
The following example may help:
SetAttributes[f, Flat];
Hold[f[f[x]]] /. HoldPattern[f[x_]] :> x^2
The result is:
Hold[f[f[x]]^2]
To see what's happening, we may run
MatchQ[f[a, b], f[_]]
The result is True. Thus we see that f[a,b] is identified as f[f[a,b]]. This is what the attribute Flat does to a function.
add a comment |
The following example may help:
SetAttributes[f, Flat];
Hold[f[f[x]]] /. HoldPattern[f[x_]] :> x^2
The result is:
Hold[f[f[x]]^2]
To see what's happening, we may run
MatchQ[f[a, b], f[_]]
The result is True. Thus we see that f[a,b] is identified as f[f[a,b]]. This is what the attribute Flat does to a function.
add a comment |
The following example may help:
SetAttributes[f, Flat];
Hold[f[f[x]]] /. HoldPattern[f[x_]] :> x^2
The result is:
Hold[f[f[x]]^2]
To see what's happening, we may run
MatchQ[f[a, b], f[_]]
The result is True. Thus we see that f[a,b] is identified as f[f[a,b]]. This is what the attribute Flat does to a function.
The following example may help:
SetAttributes[f, Flat];
Hold[f[f[x]]] /. HoldPattern[f[x_]] :> x^2
The result is:
Hold[f[f[x]]^2]
To see what's happening, we may run
MatchQ[f[a, b], f[_]]
The result is True. Thus we see that f[a,b] is identified as f[f[a,b]]. This is what the attribute Flat does to a function.
answered Dec 31 '18 at 17:28
Wen ChernWen Chern
35118
35118
add a comment |
add a comment |
Thanks for contributing an answer to Mathematica Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f188643%2fflat-attribute-example-i-dont-understand%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
Look at the result from just
fonction[x]
, you likely want to add the AttributeOneIdentity
.– chuy
Dec 31 '18 at 17:28