Go Back   Science Forums > General Science Forums > Philosophy Forums > Philosophy of Science
Reply
 
LinkBack Thread Tools
Old 12-08-2006   #1 (permalink)
Buffy's Avatar
Resident Slayer

Administrator

Location:
Sunnydale, CA
 
Buffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond repute
 



Not Ranked  0 score     
Question Classification, Approaches to

Actully I'm trying to solve a programming problem, but its so general, that I thought I'd throw it out an an interdisciplinary issue.

There are many ways to classify things, both in the sense that you can come up with different names underwhich you can group "things" as well as the fact that the way those groups are *structured* can take different forms.

The classification that most people with general science backgrounds will be familiar with is the Linnean Classification of living things. It provides lots of different pigeonholes for groups that are defined by specific physical traits, and these groups are structured into a tree-shaped hierarchy (its got only one root with branches) with well defined levels in the tree (Phylum, Class, Order, Species).

Recently, our ability to analyze DNA has resulted in a different mechanism for classification, and its "corrections" to the traditional Linnean taxonomy have caused some interesting conflicts. I don't want to get bogged down with what *should* be done about resolving these two classification mechanisms, but bring up the issue of how we think about multiple, different, and valid classifications of the same population of things.

In my programming problem, I'm trying to come up with a way to look at two or more classification schemes simultaneously. This is not too different than trying to use *both* the Linnean and DNA classifications at the same time, in order to gain insights about them: in living things, DNA gives very clear indications of linneage, whereas the parallel Linnean descriptions provide details of how those changes may have survived environmental selection.

It seems to me that--going back to the distinction posed at the beginning of this post--that there are two issues: defining groups that have varying levels of overlap (think Venn diagrams), as well as radically different linkages between these groups that can show insights through comparison and contrast of conceptual models and paths.

I've got to be honest, I'm not really even sure where I'm going with this, but I've never seen it discussed in any detail as an abstract problem and I'm hoping that some interesting insights might pop out of a random walk through the topic.

Please jump in anywhere!

Catagorically,
Buffy


----------------
"If you do not agree with anything I say, I'll not only retract it, but deny under oath that I ever said it!"
__________________________________________________ ______________-- Tom Lehrer

"No Robbie, not Europe!"


Forum Administrator
Hypography Science Forums - Science for Boys and Girls! Its not for nothing that we hang out here.
Reply With Quote
Old 12-11-2006   #2 (permalink)
Qfwfq's Avatar
Exhausted Gondolier

Administrator

Location:
Floating On An Ocean Of Hydrogen
 
Qfwfq has a reputation beyond reputeQfwfq has a reputation beyond reputeQfwfq has a reputation beyond reputeQfwfq has a reputation beyond reputeQfwfq has a reputation beyond reputeQfwfq has a reputation beyond reputeQfwfq has a reputation beyond reputeQfwfq has a reputation beyond repute
 



Not Ranked  0 score     
Re: Classification, Approaches to

Tryin' to work out a tricky class hierarchy, eh?

I think the kind of ambiguity your concerned with can be fit into OO with miltihereditarity, which of course sucks in Java as ya gotta make do with interfaces. Hasta C++ siempre!

Suppose you need a chimp to be a kind of equine as well as a primate... MH: your directed graph doesn't have to be a tree! That's prolly not exactly what you need, you seem to be needing to have two trees superimposed... MH: your chimp is a primate but it's also one of the high-intelligence species (along with dolphins, elephants, mice), but isn't for example one of the predator or the necrophagic types.

I mean, you can have each concrete type inheriting from one abstract type from each of several trees (or directed graphs). Each of these could be simple or quite elaborate.


----------------
Inutil insegnŕ al mus, si piart timp, in plui si infastiděs la bestie.

Hypography Forum PITA...... er, Administrator.
Reply With Quote
Old 12-11-2006   #3 (permalink)
Eclogite's Avatar
Explaining

Moderator

Location:
Triangulated by Mons Graupius, Harlaw & Barra.
 
Eclogite has much to be proud ofEclogite has much to be proud ofEclogite has much to be proud ofEclogite has much to be proud ofEclogite has much to be proud ofEclogite has much to be proud ofEclogite has much to be proud of
 



Not Ranked  0 score     
Re: Classification, Approaches to

For some reason the expression two orthogonal matrices, with entities represented by intersecting nodes sprang to mind. I don't know if that's an interesting insight, but it certainly just popped out.


----------------
An open mind is more about accepting nothing, than about accepting everything.
Reply With Quote
Old 12-11-2006   #4 (permalink)
Buffy's Avatar
Resident Slayer

Administrator

Location:
Sunnydale, CA
 
Buffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond repute
 



Not Ranked  0 score     
Smile Re: Classification, Approaches to

Quote:
Originally Posted by Qfwfq View Post
Tryin' to work out a tricky class hierarchy, eh?


Worse, I'm trying to implement it in a relational database!
Quote:
Originally Posted by Qfwfq View Post
I think the kind of ambiguity your concerned with can be fit into OO with miltihereditarity...
Yes of course, but actually, I've put implementation on the back burner to do research (which means I don't have to have a goal!), so I just want to think about the theoretical implications of looking at things from different points of view.

All discussion about shapes of relationships (tree, network, directed graph, etc) are all fair game. What I'd like to do is think about things like *mapping*, not just of the attributes of the "nodes" but of the links between them. If you've spent anytime with this, you know that its possible to turn graphs "inside-out" so that the attributes become the links and the links become attributes, but there are restrictions to such operations.

SO:
Quote:
Originally Posted by Qfwfq View Post
Suppose you need a chimp to be a kind of equine as well as a primate... MH: your directed graph doesn't have to be a tree! That's prolly not exactly what you need, you seem to be needing to have two trees superimposed... MH: your chimp is a primate but it's also one of the high-intelligence species (along with dolphins, elephants, mice), but isn't for example one of the predator or the necrophagic types.
...is exactly what I'm looking for! Expound here please, Q!

Nodes, they're not just for nerds anymore,
Buffy


----------------
"If you do not agree with anything I say, I'll not only retract it, but deny under oath that I ever said it!"
__________________________________________________ ______________-- Tom Lehrer

"No Robbie, not Europe!"


Forum Administrator
Hypography Science Forums - Science for Boys and Girls! Its not for nothing that we hang out here.
Reply With Quote
Old 12-11-2006   #5 (permalink)
Buffy's Avatar
Resident Slayer

Administrator

Location:
Sunnydale, CA
 
Buffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond repute
 



Not Ranked  0 score     
Re: Classification, Approaches to

Quote:
Originally Posted by Eclogite View Post
For some reason the expression two orthogonal matrices, with entities represented by intersecting nodes sprang to mind. I don't know if that's an interesting insight, but it certainly just popped out.
Very !

What made you think of it? What was it used for when you stumbled on it?

Driving connections,
Buffy


----------------
"If you do not agree with anything I say, I'll not only retract it, but deny under oath that I ever said it!"
__________________________________________________ ______________-- Tom Lehrer

"No Robbie, not Europe!"


Forum Administrator
Hypography Science Forums - Science for Boys and Girls! Its not for nothing that we hang out here.
Reply With Quote
Old 12-12-2006   #6 (permalink)
Qfwfq's Avatar
Exhausted Gondolier

Administrator

Location:
Floating On An Ocean Of Hydrogen
 
Qfwfq has a reputation beyond reputeQfwfq has a reputation beyond reputeQfwfq has a reputation beyond reputeQfwfq has a reputation beyond reputeQfwfq has a reputation beyond reputeQfwfq has a reputation beyond reputeQfwfq has a reputation beyond reputeQfwfq has a reputation beyond repute
 



Not Ranked  0 score     
Re: Classification, Approaches to

Sorry Eclogite but I'm at a loss to make sense of "two orthogonal matrices, with entities represented by intersecting nodes". What exactly would the intersecting nodes be?

Quote:
Originally Posted by Buffy View Post
Worse, I'm trying to implement it in a relational database!
Which makes it tedious but not difficult. What I'm currently working on, electric distribution networks, are directed graphs represented in RDB and the implementaion I mostly work on is in pure C which makes it less worthwhile to translate the joins into double linking.

I did imagine however that you're thinking less about implementation and more about the theoretical implications of looking at things from different points of view.

Quote:
Originally Posted by Buffy View Post
All discussion about shapes of relationships (tree, network, directed graph, etc) are all fair game. What I'd like to do is think about things like *mapping*, not just of the attributes of the "nodes" but of the links between them.
Infinitely many are the ways of mathematics.

Mappings... one of the most general concepts in mathematics, next to sets themselves! They take on semblances such as applications, functions, ordered n-ples, tables, graphs, forms, matrices, operators and younameit. But, when you mention types which may be a type of some other type, which may in turn be a type of some other type and the house that Jack built... and there may be more than one type of each type, but also each type may be a type of more than one other type, well, I see it naturallly as a directed graph. If anyone can think of another kind of mapping that suits the problem, throw it on the table...

Quote:
Originally Posted by Buffy View Post
If you've spent anytime with this, you know that its possible to turn graphs "inside-out" so that the attributes become the links and the links become attributes, but there are restrictions to such operations.
Right now I'm striving to continue a rather tricky task, which I began by first translating the original directed graph into a smaller one according to which branches are marked with a value of electric current. For each of these there is a node of the new graph, which also has children of a different type which are loads connected to some of the nodes of the original graph. The original graph can be considered a tree, of which the ancestor-descendant relation is altered but mainly contracted in an odd manner. A simple enough case of what you're after, though I did it in a nifty way that allowed me to allocate the new structs in simple C arrays, one for each type, and walk the old graph recursively but in such a way as to get the siblings all consecutive.

So, I now have two quite different representations of the same electric distribution network. In one, branches are the wires that cross the land at 10 or 15 kV and nodes are little buildings and may have connected loads. In the other, some nodes are some of the first one's branches, the other ones are loads and the branches are abstract.

Nerds are unfit for nodes...


----------------
Inutil insegnŕ al mus, si piart timp, in plui si infastiděs la bestie.

Hypography Forum PITA...... er, Administrator.
Reply With Quote
Old 12-12-2006   #7 (permalink)
KickAssClown's Avatar
A Person


Location:
Here and now
 
KickAssClown is a name known to allKickAssClown is a name known to allKickAssClown is a name known to allKickAssClown is a name known to allKickAssClown is a name known to all
Send a message via MSN to KickAssClown Send a message via Yahoo to KickAssClown
 



Not Ranked  0 score     
Re: Classification, Approaches to

I'm not sure how this helps (or hinders) but here it anyway.

humans have a base of {a, t, g, c} and {u}. u is special so it get's to be it's own set, in my mind. All of human DNA can be expressed by combonations of these bases. Now if I remember correctly (Chemistry and Genetics are not my strong points, yet), not all animals have this same set of bases.

So what would fall out of this, in my mind at least, is that any creature that shares a base element with another creature would be of greater similarity. Two creatures of identical base sets would be drasticly closer related than two creatures who shared one element of their base set, or no elements.

For making a classification scheme I see a Venn diagram and a bubble sort (or similar). Other attributes that could be used (though I am not sure how) are number of chromosomes. (IE Human c{46}, Horse c{64}, Donkey {62}, Mule{63}). The Venn Diagram can be generated from the relation of sets to one another. Of course this is thinking graphically. Which doesn't sound like what your looking for, Buffy. However that does give you something to go off, I think. Humans can be expressed as an array of arrays. Any creature can be. Humans{b{a, t, g, c} & {u}, c{46}}.

I imagine you could link this with the Linnean Classification scheme by further arrays(nodes?). Specific Epithet would be the termination point, while kingdom would be the beginning, and you could construct backwards. I am thinking of a sort of tree structure, I think. Though individual nodes, and particularly leaves, would have another level of relationships. That is a more complex geometry in my head. Which would amount to relationship of genetic commonalities.

I hope that helps some.


----------------
There are no truths in science, only the falsifiable hypotheses and explanations of the people who test them.

Hyper Physics
Hyper Math
Wikipedia
Reply With Quote
Old 12-12-2006   #8 (permalink)
Buffy's Avatar
Resident Slayer

Administrator

Location:
Sunnydale, CA
 
Buffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond repute
 



Not Ranked  0 score     
Re: Classification, Approaches to

This can all get so abstract, I'm going to take some shots at simple elements that will get the basic point across.

Here's the first one: Things we like to drink.

Classification Scheme 1: Components
  • Contains Sugar: kind, how much
  • Contains Alcohol: kind, how much
  • Fizzy!
  • Contains Fat
  • Contains Caffeine, Cocaine or other drugs
Classification Scheme 2: Manufacturing process
  • Mixing (Soda)
  • Milking (Milk)
  • Extraction (fruit juices, coffee)
  • Transformation (Beer!)
Classification Scheme 3: Provenance
  • Geographic location/cultural use
  • Discovery ("Ya see that animal over there with the big bag underneath it?")
  • Combination ("You spilled your chocolate milk in my coffee!")
  • Age (how long have humans been consuming it)
Classification Scheme 4: Usage
  • Health
  • Treat
  • Drug
  • Ritual

As you can see, even with a simple concept, there are so many different ways of looking at it. How do we think about not only the classifications, but the mappings between the classifications (sweet->treat). This one is even too simple to see some other attributes, so I'll have to think of more. But its a starting point to get you all thinking about it....

Classy,
Buffy


----------------
"If you do not agree with anything I say, I'll not only retract it, but deny under oath that I ever said it!"
__________________________________________________ ______________-- Tom Lehrer

"No Robbie, not Europe!"


Forum Administrator
Hypography Science Forums - Science for Boys and Girls! Its not for nothing that we hang out here.
Reply With Quote
Old 12-12-2006   #9 (permalink)
Pyrotex's Avatar
Slaying Bad Memes

Moderator
Editor

Location:
Houston, Texas
Latest blog entry:
 
Pyrotex has a reputation beyond reputePyrotex has a reputation beyond reputePyrotex has a reputation beyond reputePyrotex has a reputation beyond reputePyrotex has a reputation beyond reputePyrotex has a reputation beyond reputePyrotex has a reputation beyond reputePyrotex has a reputation beyond reputePyrotex has a reputation beyond reputePyrotex has a reputation beyond reputePyrotex has a reputation beyond repute
Send a message via MSN to Pyrotex
 



Not Ranked  0 score     
Re: Classification, Approaches to

Part of your problem may be the phrase "relational database".

For all of their power and ease of use (and I have used plenty), RD's have inherent constraints on what they can be made to do. For example, I tried to use an RD to model a very simple concept, the "exploded graph" of a typical Work Breakdown Structure. In a WBS, a cog is a "cog", but it also belongs to a "gearbox", and a "transmission", and an "elbow force module", and an "elbow mechanical assembly", and a "robotic arm", and a "mobile grasping system", and...

I couldn't do it. At first, I was tortured with self-doubt and angst. Then I demonstrated that it couldn't be done. I can't speak for all RD's, but the two RD's I had at hand simply couldn't kiss their own elbows in the right way necessary to model a WBS with "exploded graph".

However, young Jedi, there is a way, if you are prepared to take it.

You can build your own custom RD, with arrays of links, arrays of double-links, circular lists, multiply-connected lists, whatever you can imagine.

In 1985, I was presented with a dragon task requiring a RD of immense power, to catalog every task required to prepare and train a crew for a Shuttle Mission, and eventually calculate the maximum Shuttle launch rate, given the current (and proposed) resources within NASA's Johnson Space Center.

I built my own RD out of FORTRAN arrays, and could define ANY relationship, indeed, any multiple-complex-disjointed, overlapping relationships I could think of -- and in five months had the answers.


----------------
Hypography Forums Moderator
-- - - - - -
What concerns me is not the way things are, but rather the way people think things are.
Epictetus, Greek Philosopher
The map is NOT the territory.
Korzybski, Polish-American Philosopher
Reply With Quote
Old 12-12-2006   #10 (permalink)
Buffy's Avatar
Resident Slayer

Administrator

Location:
Sunnydale, CA
 
Buffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond reputeBuffy has a reputation beyond repute
 



Not Ranked  0 score     
Re: Classification, Approaches to

Quote:
Originally Posted by Pyrotex View Post
Part of your problem may be the phrase "relational database"....For example, I tried to use an RD to model a very simple concept, the "exploded graph" of a typical Work Breakdown Structure...Then I demonstrated that it couldn't be done. ...I built my own RD out of FORTRAN arrays, and could define ANY relationship, indeed, any multiple-complex-disjointed, overlapping relationships I could think of -- and in five months had the answers.
Yes, say "bill-of-materials" to a relational database designer and watch her head explode. But it can be done as Q noted above, you just have to know *how* to do it and have enough horsepower to deal with it and a practical approach to programmatic access (both cursors and embedding within general programming languages) and limits of recursion and you can do amazing things. Just like you did in Fortran!

That's why its better to model first, *then* design.

But anyway, the thread's about the modeling part. I'll have fun with implementation later. "Its merely an implemenation problem..."

select x, (select y, (select z from t where y=...
Buffy


----------------
"If you do not agree with anything I say, I'll not only retract it, but deny under oath that I ever said it!"
__________________________________________________ ______________-- Tom Lehrer

"No Robbie, not Europe!"


Forum Administrator
Hypography Science Forums - Science for Boys and Girls! Its not for nothing that we hang out here.
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
Rethinking…Classification of Scientific Theory HIENVN Philosophy of Science 2 10-20-2006 12:52 PM
Classification of zero and 0 arkain101 Strange Claims Forum 13 04-05-2006 11:59 AM
Absolutely new approaches to apoptosis research Vladimir Matveev Biology 2 01-08-2006 10:27 PM
Classification-standards tarak Biology 1 03-09-2005 03:04 AM

» Advertisement
» Current Poll
Who's the sexiest man alive? Johnny Depp or Robert Pattinson?
Johnny Depp - 27.27%
3 Votes
Robert Pattinson - 0%
0 Votes
Someone else (please specify) - 45.45%
5 Votes
I'm too macho to think a guy is sexy - 27.27%
3 Votes
Total Votes: 11
You may not vote on this poll.


All times are GMT -8. The time now is 07:48 PM.

Hypography?

Hypography [n.]: A combination of "hyperlink" and "bibliography" - ie, a list of links to electronic documents. Comparable to discography and bibliography, but not cartography.

We have been online since May 2000, and aim to be the best place to find and share science-related content of all kinds.

Share the love!

Please add more science to your life. Use our RSS feeds on your blog, your portal, or your favorite feedreader!


Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2
Copyright © 2000-2009 Hypography
Part of the Hypography - Science for Everyone Network