Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Functional decomposition
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{Short description|Expression of a function as the composition of two functions}} {{Use dmy dates|date=May 2019|cs1-dates=y}} {{multiple issues| {{essay|date=May 2023}} {{original research|date=May 2023}} {{more footnotes needed|date=September 2020}} }} In [[engineering]], '''functional decomposition''' is the process of resolving a [[Function (mathematics)|functional]] relationship into its constituent parts in such a way that the original function can be reconstructed (i.e., recomposed) from those parts. This process of decomposition may be undertaken to gain insight into the identity of the constituent components, which may reflect individual physical processes of interest. Also, functional decomposition may result in a compressed representation of the global function, a task which is feasible only when the constituent processes possess a certain level of ''modularity'' (i.e., independence or non-interaction). [[Interaction (statistics)]]{{clarify span|(a situation in which one causal variable depends on the state of a second causal variable)|reason=The notion of 'interaction' of mathematical functions is undefined, likewise for 'observable', 'perception' etc. I guess this paragraph confuses mathematical notions (like 'function') with physical intuitions (like 'process'); this should be fixed.|date=September 2020}} between the components are critical to the function of the collection. All interactions may not be {{clarify span|[[Observability|observable]], or measured|date=September 2020}}, but possibly deduced through repetitive {{clarify span|[[perception]]|date=September 2020}}, synthesis, validation and verification of composite behavior. ==Motivation for decomposition== [[Image:West-side-highway traffic.png|thumb|400px|Causal influences on West Side Highway traffic. Weather and GW Bridge traffic ''screen off'' other influences]] Decomposition of a function into non-interacting components generally permits more economical representations of the function. Intuitively, this reduction in representation size is achieved simply because each variable depends only on a subset of the other variables. Thus, variable <math>x_1</math> only depends directly on variable <math>x_2</math>, rather than depending on the ''entire set'' of variables. We would say that variable <math>x_2</math> ''screens off'' variable <math>x_1</math> from the rest of the world. Practical examples of this phenomenon surround us. Consider the particular case of "northbound traffic on the [[West Side Highway]]." Let us assume this variable (<math>{x_1}</math>) takes on three possible values of {"moving slow", "moving deadly slow", "not moving at all"}. Now, let's say the variable <math>{x_1}</math> depends on two other variables, "weather" with values of {"sun", "rain", "snow"}, and "[[GW Bridge]] traffic" with values {"10mph", "5mph", "1mph"}. The point here is that while there are certainly many secondary variables that affect the weather variable (e.g., low pressure system over Canada, [[Butterfly Effect|butterfly flapping]] in Japan, etc.) and the Bridge traffic variable (e.g., an accident on [[Interstate 95 in New York|I-95]], presidential motorcade, etc.) all these other secondary variables are not directly relevant to the West Side Highway traffic. All we need (hypothetically) in order to predict the West Side Highway traffic is the weather and the GW Bridge traffic, because these two variables ''screen off'' West Side Highway traffic from all other potential influences. That is, all other influences act ''through'' them. ==Applications== Practical applications of functional decomposition are found in [[Bayesian networks]], [[structural equation modeling]], [[linear systems]], and [[database systems]]. == Knowledge representation == Processes related to functional decomposition are prevalent throughout the fields of [[knowledge representation]] and [[machine learning]]. Hierarchical model induction techniques such as [[Logic circuit minimization]], [[decision trees]], [[grammatical inference]], [[hierarchical clustering]], and [[quadtree decomposition]] are all examples of function decomposition. Many [[statistical inference]] methods can be thought of as implementing a function decomposition process in the presence of noise; that is, where functional dependencies are only expected to hold ''approximately''. Among such models are [[mixture models]] and the recently popular methods referred to as "causal decompositions" or [[Bayesian networks]]. == Database theory == See [[database normalization]]. == Machine learning == In practical scientific applications, it is almost never possible to achieve perfect functional decomposition because of the incredible complexity of the systems under study. This complexity is manifested in the presence of "noise," which is just a designation for all the unwanted and untraceable influences on our observations. However, while perfect functional decomposition is usually impossible, the spirit lives on in a large number of statistical methods that are equipped to deal with noisy systems. When a natural or artificial system is intrinsically hierarchical, the [[joint distribution]] on system variables should provide evidence of this hierarchical structure. The task of an observer who seeks to understand the system is then to infer the hierarchical structure from observations of these variables. This is the notion behind the hierarchical decomposition of a joint distribution, the attempt to recover something of the intrinsic hierarchical structure which generated that joint distribution. As an example, [[Bayesian network]] methods attempt to decompose a joint distribution along its causal fault lines, thus "cutting nature at its seams". The essential motivation behind these methods is again that within most systems (natural or artificial), relatively few components/events interact with one another directly on equal footing.{{sfnp|Simon|1963}} Rather, one observes pockets of dense connections (direct interactions) among small subsets of components, but only loose connections between these densely connected subsets. There is thus a notion of "causal proximity" in physical systems under which variables naturally precipitate into small clusters. Identifying these clusters and using them to represent the joint provides the basis for great efficiency of storage (relative to the full joint distribution) as well as for potent inference algorithms. == Software architecture == {{main|Functional decomposition (computer science)}} {{main|Structured analysis}} {{main|Structure chart}} Functional Decomposition is a design method intending to produce a non-implementation, architectural description of a computer program. The software architect first establishes a series of functions and types that accomplishes the main processing problem of the computer program, decomposes each to reveal common functions and types, and finally derives Modules from this activity. == Signal processing == Functional decomposition is used in the analysis of many [[signal processing]] systems, such as [[LTI system theory|LTI systems]]. The input signal to an LTI system can be expressed as a function, <math>f(t)</math>. Then <math>f(t)</math> can be decomposed into a linear combination of other functions, called component signals: ::<math> f(t) = a_1 \cdot g_1(t) + a_2 \cdot g_2(t) + a_3 \cdot g_3(t) + \dots + a_n \cdot g_n(t) </math> Here, <math> \{g_1(t), g_2(t), g_3(t), \dots , g_n(t)\} </math> are the component signals. Note that <math> \{a_1, a_2, a_3, \dots , a_n\} </math> are constants. This decomposition aids in analysis, because now the output of the system can be expressed in terms of the components of the input. If we let <math>T\{\}</math> represent the effect of the system, then the output signal is <math>T\{f(t)\}</math>, which can be expressed as: ::<math> T\{f(t)\} = T\{ a_1 \cdot g_1(t) + a_2 \cdot g_2(t) + a_3 \cdot g_3(t) + \dots + a_n \cdot g_n(t)\}</math> ::<math> = a_1 \cdot T\{g_1(t)\} + a_2 \cdot T\{g_2(t)\} + a_3 \cdot T\{g_3(t)\} + \dots + a_n \cdot T\{g_n(t)\}</math> In other words, the system can be seen as acting separately on each of the components of the input signal. Commonly used examples of this type of decomposition are the [[Fourier series]] and the [[Fourier transform]]. == Systems engineering == {{main|Functional flow block diagram}} Functional decomposition in [[systems engineering]] refers to the process of defining a system in functional terms, then defining lower-level functions and sequencing relationships from these higher level systems functions.<ref>{{cite report |url= http://ocw.mit.edu/courses/aeronautics-and-astronautics/16-885j-aircraft-systems-engineering-fall-2005/readings/sefguide_01_01.pdf |title=Systems Engineering Fundamentals |publisher=Defense Acquisition University Press |place=Fort Belvoir, VA |date=January 2001 |page=45}}</ref> The basic idea is to try to divide a system in such a way that each block of a [[Functional flow block diagram|block diagram]] can be described without an "and" or "or" in the description. This exercise forces each part of the system to have a pure [[role|function]]. When a system is designed as pure functions, they can be reused, or replaced. A usual side effect is that the interfaces between blocks become simple and generic. Since the interfaces usually become simple, it is easier to replace a pure function with a related, similar function. For example, say that one needs to make a [[boombox|stereo]] system. One might functionally decompose this into [[loudspeaker|speakers]], [[amplifier]], a [[tape deck]] and a front panel. Later, when a different model needs an audio [[CD]], it can probably fit the same interfaces. ==See also== *[[Bayesian networks]] *[[Currying]] *[[Database normalization]] *[[Function composition (computer science)]] *[[Inductive inference]] *[[Knowledge representation]] ==Further reading== * {{cite conference | last1=Zupan | first1=BlaΕΎ | last2=Bohanec | first2=Marko | last3=Bratko | first3=Ivan | last4=DemΕ‘ar | first4=Janez | date=July 1997 | title=Machine learning by function decomposition | url=https://dl.acm.org/doi/10.5555/645526.657131 | conference=ICML '97: July 8β12, 1997 | conference-url=https://dl.acm.org/doi/proceedings/10.5555/645526 | editor=Douglas H. Fisher | book-title=Proceedings of the Fourteenth International Conference on Machine Learning | publisher=Morgan Kaufmann Publishers |place=San Francisco | isbn=978-1-55860-486-5 | pages=421β429 }} A review of other applications and function decomposition. Also presents methods based on [[information theory]] and [[graph theory]]. ==Notes== {{reflist}} ==References== {{refbegin}} * {{Citation |last=1. Fodor |first=Jerry |author-link=Jerry Fodor |title=The Modularity of Mind |place=Cambridge, Massachusetts |publisher=MIT Press |year=1983}} * {{Citation |last=2. Koestler |first=Arthur |title=The Ghost in the Machine |place=New York |publisher=Macmillan |year=1967}} * {{Citation |first=Athur |last=3. Koestler |editor-last=Gray |editor-first=William |editor2-last=Rizzo |editor2-first=Nicholas D. |contribution=The tree and the candle |title=Unity Through Diversity: A Festschrift for Ludwig von Bertalanffy |year=1973 |pages=287β314 |place=New York |publisher=Gordon and Breach}} * {{Citation |last=4. Leyton |first=Michael |title=Symmetry, Causality, Mind |place=Cambridge, Massachusetts |publisher=MIT Press |year=1992}} *{{Citation |last=5. McGinn |first=Colin |title=The Problem of Philosophy |journal=Philosophical Studies |volume=76 |issue=2β3 |pages=133β156 |year=1994 |doi=10.1007/BF00989821 |s2cid=170454227}} * {{Citation |last=6. Resnikoff |first=Howard L. |title=The Illusion of Reality |place=New York |publisher=Springer |year=1989}} *{{Citation |last1=Simon |first1=Herbert A. |year=1963 |chapter=Causal Ordering and Identifiability |editor=Ando, Albert |editor2=Fisher, Franklin M. |editor3=Simon, Herbert A. |title=Essays on the Structure of Social Science Models |publisher=MIT Press |place=[[Cambridge, Massachusetts|Cambridge]], Massachusetts |pages=5β31}}. *{{Citation |last1=8. Simon |first1=Herbert A. |year=1973 |chapter=The organization of complex systems |editor=Pattee, Howard H. |title=Hierarchy Theory: The Challenge of Complex Systems |publisher=George Braziller |place=[[New York City|New York]] |pages=3β27}}. *{{Citation |last1=9. Simon |first1=Herbert A. |year=1996 |chapter=The architecture of complexity: Hierarchic systems |title=The sciences of the artificial |publisher=MIT Press |place=[[Cambridge, Massachusetts|Cambridge]], Massachusetts |pages=183β216}}. *{{Citation |last1=10. Tonge |first1=Fred M. |year=1969 |chapter=Hierarchical aspects of computer languages |editor=Whyte, Lancelot Law |editor2=Wilson, Albert G. |editor3=Wilson, Donna |title=Hierarchical Structures |publisher=American Elsevier |place=[[New York City|New York]] |pages=233β251}}. {{refend}} {{DEFAULTSORT:Functional Decomposition}} [[Category:Functions and mappings]] [[Category:Philosophy of mathematics]] [[Category:Philosophy of physics]]
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)
Pages transcluded onto the current version of this page
(
help
)
:
Template:Citation
(
edit
)
Template:Cite conference
(
edit
)
Template:Cite report
(
edit
)
Template:Clarify span
(
edit
)
Template:Main
(
edit
)
Template:Multiple issues
(
edit
)
Template:Refbegin
(
edit
)
Template:Refend
(
edit
)
Template:Reflist
(
edit
)
Template:Sfnp
(
edit
)
Template:Short description
(
edit
)
Template:Use dmy dates
(
edit
)