My Links

Bloggernacle Links

  • Mormon Archipelago
  • Mormon Blogs
  • LDSelect
  • LDS Blogs

Article Categories

Recent Comments

Post Categories

Archives

Other LDS Blogs

Our Individual Blogs

Home Teaching: The Brute Force Solution

By: The Baron

It’s been a while since we’ve used mathematics to discuss gospel subjects, so let’s introduce two common problems in computer science:

Problem 1:  Imagine a lake, which due to an amazing geological miracle happens to be shaped in a perfect rectangle.  On the lake are N boats, each at their own unique (X,Y) locations on the lake.  The task is:  Find the two boats that are closest in distance to each other.



Problem 2:  We have a travelling salesman who has to visit N cities during his trip.  Given a grid of how distant each city is from each other, what’s the most efficient way to hit all N cities in one trip?  In other words, what’s the shortest path the salesman can take that would visit all N cities in the least amount of miles?



In both cases, the simplest way to make sure we find the correct answer is through what in computer science terms is called the brute force method.  Basically, try all the possible combinations and select the lowest value.  In problem 1, we take each boat in turn, calculate the distance between it and every other boat, and make note of which value is the shortest.  In problem 2, we compare every possible path through all N cities and make note of which path is the shortest. 

Obviously, the “brute force” method will always find the right answer in the end, but it is not very efficient.  Since each boat has to be compared with every other boat, the time and effort it takes to do all the calculations increases exponentially as the number of boats increases.  With 20 boats, this is not a big problem—with 20 MILLION boats, say, even a computer that could calculate the distance between two boats in 10 nanoseconds would still take 126 years to check all possible boat pairs.

Common sense suggests we should be able to find a better solution than “brute force”. We may not know which pair of boats are the closest just by looking at the picture, but it’s obvious even to non-mathematicians that it is certainly NOT G and M, or A and S, for example.  If we know there are some boat pairs that are clearly NOT the right answer, then there’s no reason to spend the time to calculate the distances between them.  Therefore, there should be some way to optimize our calculations by only focusing on a subset of potential candidates that could be the shortest pair and ignore the others.  Such a method would still find the correct answer in the end, but in a faster and more efficient manner than the “brute force” method.

(We’re not talking about just eyeballing the graph and making educated guesses, either.  One can prove mathematically that given boats A and S, and some third boat T, that if you draw a triangle between those three boats, and the angle at point T is greater than 90 degrees, then the distance between either A-T or T-S *must* be shorter than A-S—therefore, the actual distance between A and S doesn’t need to be calculated since we know cannot possibly be the right answer.   If this triangle math seems like *more* work than just calculating the distance between A and S in the first place, you’re correct…for smaller examples.  But in cases of millions of boats where a triangle or two can eliminate several thousand possibilities that don’t need to be considered, the time savings will add up.)

The danger of departing from the “brute force” method which we know will spit out the right answer (eventually), is that we’ll end up with what we’ll call a “Max Power” solution, named after a famous “Simpsons” episode where Homer changes his name to Max Power.



Homer:  There’s three ways to do things: the right way, the wrong way, and the Max Power way!
Bart: Isn’t that just the wrong way?
Homer:  Yes…but FASTER!

It doesn’t do any good to use an alternate method that’s faster than “brute force”…but which gives you the wrong answer.  It’s dangerous for programmers to get sucked into a “Max Power” solution which is fast, and seems to work most of the time, but in the end is not guaranteed to give you the correct answer in all cases.  (Obviously, the point of the exercise was to find the correct answer, not just to "finish faster")

The boat problem has solutions that are faster than pure ‘brute force’, and are guaranteed to find the correct answer.  (Basically, divide the lake into sub-quadrants and calculate the closest pair of boats in each quadrant.  Unless a boat is close to the border, you generally won’t have to calculate the distance between a boat in one quadrant and any boat not in the same quadrant, saving tremendous amounts of time.)

The salesman problem, however, does not.  The travelling salesman problem belongs to a class of mathematical problems that do not have a non-‘brute force’ answer.  If you want the correct answer, you *have* to consider every possible route and find out which one is shorter…there are no shortcuts to doing so.  (Some applications can get away with a “Max Power” approach here, which can find an ‘acceptably short’ solution which is good enough for practical use, but which is never guaranteed to be the actual shortest route.)

With that as a foundation, let’s discuss home teaching.

Home teaching in the Church is, literally, the “brute force” method of caring for fellow members.  Every member is assigned a home teacher, and every member is expected to be visited.   Many members complain, not unreasonably, that not every member really needs to be home taught and that largely the current system is a waste of time.

Well, yes…by definition, the “brute force” solution wastes a lot of time.  But—here’s the point--it gives you the ‘right answer’, which in this case means ensuring that every member who needs to be home taught, is.  Saying we should only home teach those people who need it is like saying airport security shouldn’t screen everyone, but only those airplane passengers who present a threat.  (“But…”)

Unfortunately, like the travelling salesman problem above, home teaching is a problem with no non-brute-force solution.  One can’t ‘guess’ which members need it and which ones don’t—any attempt to do so will, if not immediately then eventually, miss someone.  (Another obvious point: home teaching is not ‘static’—families that didn’t ‘need’ home teachers last month may suddenly need a lot of help this month due to changing circumstances…) 

Complaints against the current system of home teaching are valid…but also irrelevant at the same time, because there are no alternate solutions that will accomplish the same ends.  If the ultimate goal is making sure all members who need home teachers have home teachers, every other system just becomes a “Max Power” solution: where the goal isn’t accomplished, but it’s not accomplished in a faster, more efficient way!

(Now, I recognize the primary objection: that plenty of people who need home teachers fall through the cracks as it is now, since plenty of people don't fulfill their home teaching assignments.  Since any alternate system, though, will also fundamentally depend on people fulfilling their assignments, we’ll have exactly the same point of failure—and almost certainly the same result.  Since any alternate solution shares the same flaw, it can’t reasonably be used as a valid argument against the brute force method.)

I've struggled through plenty of visits where families clearly aren't interested in hearing a message and are happy when we leave.  I've been annoyed at times when our own home teachers disrupt our regular schedule and share a message I have no interest in.  Yet, I'm still glad those home teachers are there.  Who knows what our family is going to need a month from now?  The current system may be inelegant and inefficient, but in the end it's the only system that is going to accomplish the proper goal.

Print | posted on Tuesday, April 29, 2008 8:07 AM | Filed Under [ The Baron General Mormon Culture Family ]

Comments:

#1: Eric Nielson

Are you sure?

I kinda like home teaching the way it is, but I might throw out a thought for possible discussion.

How about this system:

Have a pool of home teachers ready to go.
Have families who feel the need for home teaching call in an appointment.
Have the EQP (or someone) dispatch the home teachers.

This way only the families who want or need home teachers this month get them. This places the responsibility for arrangements on the families involved.

As I think about general welfare responsibilities, the priority for providing help goes - the individual, the family, the church. Why not extend this to all areas of welfare (or well-being)? Including home teaching.
4/29/2008 10:17 AM

#2: The Baron

This presumes that people who 'need' home teachers (however we define that) is the same as 'wanting' home teachers, and I don't think they will line up exactly. Part of the current system of home teaching is contacting and being around families enough on a regular basis such that when 'needs' arrive which the family members themselves will often be hesitant to actually ask someone for help, the home teachers are familiar enough with the situation that they can help out anyway. With a 'self-reporting' system, most of those needs will go unmet, as there is now no one checking in on whether there are unreported needs being met. I suspect this system would be unworkable in the end, as I can't imagine people self-reporting anything more than a small fraction of true 'needs' defined from an objective viewpoint.
4/29/2008 10:33 AM

#3: The Only True and Living Nathan

As the EQ President right now, my counsel to the home teachers is always: Bring something to the home, and leave it better than you found it. If you're visiting a family that won't even let you in the door, smile and hand them a newsletter and wish them a good day. If you're visiting a family that's inactive and uninterested in the gospel but will let you in just to be friendly, be friendly right back, get to know them, invite them to events you think they'd like, and leave a short (sometimes even thirty seconds) spiritual thought. If you're visiting an active family, ask the head of household if he/she wants you to tailor your message to the kids or the adults.

And whenever possible, ask if you can do SPECIFIC THINGS for them. The standard "Is there anything we can do for you?" question rarely gets more than a smile and a headshake. But ask the single mother if she wants her lawn mowed or her children watched while she goes to Enrichment, and suddenly you'll find that you CAN bless the lives of these people you serve.

Yeah, I take home teaching pretty seriously.
4/29/2008 1:39 PM

#4: JM

Home teaching is just one approach to "Watch over, be with, and strengthen". There are many other ways we can accomplish the overarching objective without the clumsy implementation we currently have.

Home teaching is a tired, broken, PROGRAM that needs to disappear and be replaced with something that will actually work and accomplish the objective it is set out to do.

If they can get rid of the Stake Mission because it was obsolete, they can do the same with Home Teaching.
4/30/2008 6:21 AM

#5: JM

re:#2

Why is that such a bad thing. We spend all this time preaching self reliance, yet we don't trust anyone to report their own needs? This "Say one thing, do another" approach to people in the churc is one additional reason why the system stinks.
4/30/2008 6:25 AM

#6: The Baron

Home teaching is a tired, broken, PROGRAM that needs to disappear and be replaced with something that will actually work and accomplish the objective it is set out to do.


What would that be, though? What new system could you propose that would 'accomplish the objective' without running into the same flaws? (Namely, getting people to do it reliably)

I, myself, would be a little more enthusiastic about HT if I knew I would be doing some good, instead of hoping that maybe, someday I'd be doing some good, but--I'm sorry--the 'self-reporting' idea would be a disaster. How many members--especially inactive members--are going to call in and report things which require assistance? Wouldn't this lead to a number of situations where members know other members need help, but since "they haven't asked..." they'd be more inclined to just sit on their hands and do nothing? Not everyone who 'needs' help 'wants' help at the same time...
4/30/2008 7:15 AM

#7: The Only True and Living Nathan

I, myself, would be a little more enthusiastic about HT if I knew I would be doing some good, instead of hoping that maybe, someday I'd be doing some good, but--I'm sorry--the 'self-reporting' idea would be a disaster. How many members--especially inactive members--are going to call in and report things which require assistance? Wouldn't this lead to a number of situations where members know other members need help, but since "they haven't asked..." they'd be more inclined to just sit on their hands and do nothing? Not everyone who 'needs' help 'wants' help at the same time...


And no one will call a stranger for help. That's another thing I tell the brothers in the Quorum: You need to be there for the family, so that when they need help -- be it a priesthood blessing or a piano to be moved -- they'll call you first, BEFORE they call me or the Bishop.

JM: Home teaching is broken because of the people who are supposed to be doing it, and until the people catch the vision, ANY system will be broken.
4/30/2008 8:54 AM

#8: JM

#7, not true. Home teaching is broken for many more reasons for that. Lack of vision by those who are suppose to be doing it is a symptom, not a cause. Take it from someone who was in the EQP for 9 years and president for 3.
4/30/2008 10:16 AM

#9: JM

Nathan,

I'd be interested in hearing you describe how the home teaching program is run in your ward / quorum.
4/30/2008 10:19 AM

#10: Kim Siever

I agree with JM that it isn't necessarily the fault of hometeachers that home teaching doesn't work.

Take a look at MLS for example. The only report in prints out is whether a home teaaching visit is made. There is no way to know in MLS if the HT are asking about the spiritual and temporal welfare of the families, There is no way to know in MLS whether a message was given. There is no way to tell in MLS if hometeachers are working with families to meet personal growth.

Granted, by adding all these types of functionality, MLS will become more bloated, my point is that focusing on a simple stat results in that stat becoming a measure in itself and thus a standard. The HT think all they need to do is make contact.

That alone needs to change.

Also consider D&C 20:42. This scripture is often used to support the current HT programme. The problem, of course, is that the programme is part of the principle; it is not synonymous with the principle. Watching over the church goes so much further than setting up an appointment to visit someone.

You can read more on my vision for hometeaching, but the idea is that somehow, one day, priesthood holders would naturally and spontaneously watch over the church.
4/30/2008 1:22 PM

#11: Mike L.

The comparison between home teaching and the traveling salesperson is interesting, but I think there is one significant difference that has been touched on in previous comments, but I'll summarize this way:

The goal of the traveling salesperson problem is to find the shortest path, but the goal of home teaching is not to make sure everyone is visited every month. It is to improve the well-being of the members. So while the brute force method does indeed find the "correct" answer to the traveling salesperson answer, the current home teaching system does not necessarily yield the "correct" result, unless your metric is just the percentage of families visited every month.

I'm not necessarily saying that the home teaching system is bad, but I just wanted to point that out.
4/30/2008 9:47 PM

#12: Mike L.

Excuse me, what I should have said in #11 was "... but the goal of home teacing is not to make sure everyone who needs to be visited is visited every month."
5/1/2008 4:49 AM

#13: NorthboundZax

Don't discount the 'Max Power' approach so quickly. To further the computer science analogy, a close solution that was derived quickly has infinite more utility than a 'correct' solution that takes forever to compute.

Personally, I think home teaching would benefit tremendously from a 'Max Power' approach. It makes little sense to me to waste so much time and energy on non-productive visits. It wouldn't be that hard to come up with some sort of opt-in/opt-out quarterly/monthly system that is as effective as we have now, but far less painful month-to-month.
5/1/2008 11:54 AM

#14: The Only True and Living Nathan

(JM, I hope I answer your question sufficiently in responding to Kim.)

Kim,

You're right; hometeachers need to understand that more than simply making contact is required. As with any measure in the church -- the total number of members, the headcount at sacrament meeting, etc. -- the number is a faulty quantification of baseline activity. It cannot tell us whether people are being spiritually fed, nor can any metric tell us that.

That said, knowing who's been visited does at least give an indication of potential. I can't know whether the hometeachers are spiritually feeding those in their charge by checking the numbers, but I can tell they definitely AREN'T if they're not showing up.

That's one big reason that I conduct personal priesthood interviews every month. I want the elders to tell me about the families they hometeach; I want them to understand that I want to hear back from them about their stewardship every month. The numbers are dealt with on a different day, by different means; in those interviews, I want to know about the people and whether the hometeachers are able to bless their lives.

JM, I hope that givs some answer to your open-answered question. (By the way, and I hope you don't mind that I don't feel the need to "take it from you" -- having been EQ president for two years, in the presidency for an additional four, and ward clerk for five years in between, I have my own pool of experience to draw on.)
5/1/2008 12:40 PM

#15: Apollo

I didn't read ALL of the comments, but here are my two cents.

Reduce the amount of coordination from 3 parties to 2. Therefore you simply combine the hometeaching and visiting teaching program. Couples visit couples or in other words, households visit households. Also, create 'pools' of households and then they visit each other. My parents' ward (stake?) does this in St. George. I don't think they do the 'poo' thing, but I do know they often visit as a couple rather than my dad going with another high priest and doing HT.

Another problem I have with HT is the CONSTANT changing of companions and families.

Also ... I think emails and phone calls and visits at church meetings should count. The formality of visiting is burdendome.
5/1/2008 3:52 PM

#16: Starfoxy

I can't know whether the hometeachers are spiritually feeding those in their charge by checking the numbers, but I can tell they definitely AREN'T if they're not showing up.


I don't know about this. I visit teach a few sisters, and though I haven't officially visited them, for the past 2 months I've been careful to know what is going on in their lives, volunteered to help them, and tried my best to be genuinely friendly to them in particular. So when my supervisor asks for a report I feel I have to say 'no I didn't visit teach them this month,' but I did my best to watch over, care for, and love them, which as far as I know is the the goal behind the whole thing.
5/1/2008 5:35 PM

#17: The Only True and Living Nathan

I don't know about this. I visit teach a few sisters, and though I haven't officially visited them, for the past 2 months I've been careful to know what is going on in their lives, volunteered to help them, and tried my best to be genuinely friendly to them in particular. So when my supervisor asks for a report I feel I have to say 'no I didn't visit teach them this month,' but I did my best to watch over, care for, and love them, which as far as I know is the the goal behind the whole thing.


Which is exactly what I count, as I put it above. I don't care if it's an "official visit" -- if they've seen to the needs of the family, they're fulfilling their duty.
5/2/2008 10:06 AM

#18: Kim Siever

I can't know whether the hometeachers are spiritually feeding those in their charge by checking the numbers, but I can tell they definitely AREN'T if they're not showing up.


True, but can you tell if they're are taking care of someone else, or if someone else is taking care fo their assigned families?

It reminds me of an experience I had with my stake president. He asked why our home teaching was only 9%. I told him it was because MLS doesn't account for spontaneous service. Sure we had only five families visited by their assigned home teachers that month, but I knew of 12 occasions that month where quorum members were helped in some way by someone not assigned to them.

He hasn't asked me about low stats since.

"That's one big reason that I conduct personal priesthood interviews every month."

Currently, that';s the best tool we have of gyuaging real growth and progression.

And since everyone seems to be on a kick to banter about callings. I've been EQP for 5 years (two different wards) and counsellor for 1. I can list my other callings if requested.
5/2/2008 11:40 AM

#19: Kim Siever

Sory, that should be gauging.
5/2/2008 11:40 AM

#20: Matt Jacobsen

I like to see applied math. I think, though, that the boat distance problem is quadratic, not exponential. Checking pairs of 20 million boats at 10 ns each should take about 23 days -- still too long for most people. The travelling salesman problem, like you said, is a whole different ballgame.

As far as home teaching goes, I've found that most of my frustration comes from being in elders quorums with relatively high turnover, at least compared with most high priests groups. It takes a while for me to get to know people and feel comfortable enough to even invite myself into their home. And then, bang, I'm assigned new families and a new companion.
5/2/2008 1:23 PM

#21: Dan

My Stake uses a Max Power approach. Every home teacher has a companion, which ties up two Elders or a Elder and a Teacher/Priest.

Each companionship is assigned no more than three families to visit. There are families in my stake that are obviously not even assigned. Since I am assigned a HT, I'm not sure what the qualifications are to not be assigned, but my stake has been doing this for a few years now, and has felt no need to change its current system.

For what it's worth, home teaching does matter, and can make a huge difference in the life of someone, speaking from experience.
5/2/2008 4:14 PM

#22: ed42

Perhaps "The Secret of the Cave" is the best solution?
5/3/2008 9:15 AM

Post Comment:

Name  
Email
Url
Comment   
Please add 3 and 1 and type the answer here:

Powered by: