Path: csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!nntp-feed.chiark.greenend.org.uk!ewrotcd!news.nosignal.org!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.005 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'python.': 0.02; 'means,': 0.07; 'though:': 0.07; 'python': 0.09; 'part,': 0.09; 'sub': 0.09; 'subtract': 0.09; 'student': 0.15; 'equations': 0.16; 'formula': 0.16; 'seperate': 0.16; 'side.': 0.16; 'stuff.': 0.16; 'subject:stuck': 0.16; 'tutorials.': 0.16; 'wed,': 0.16; 'wrote:': 0.17; '(in': 0.18; 'jan': 0.18; 'url:edu': 0.18; 'appears': 0.18; 'bit': 0.21; 'assignment': 0.22; 'constant': 0.22; 'programming': 0.23; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'am,': 0.27; 'rest': 0.28; 'skip:( 20': 0.28; 'chris': 0.28; 'basic': 0.30; 'problem.': 0.32; 'function.': 0.33; 'true.': 0.33; 'to:addr:python-list': 0.33; "can't": 0.34; 'project': 0.34; 'problem,': 0.35; 'solving': 0.35; 'there': 0.35; 'except': 0.36; 'but': 0.36; 'subject:: ': 0.38; 'mean': 0.38; 'to:addr:python.org': 0.39; 'received:192': 0.39; 'where': 0.40; 'received:192.168': 0.40; 'help': 0.40; 'most': 0.61; 'here:': 0.62; 'solve': 0.62; 'more': 0.63; 'civil': 0.66; 'header:Reply- To:1': 0.68; 'received:74.208': 0.71; 'url:htm': 0.71; 'reply- to:no real name:2**0': 0.72; '2013': 0.84; 'isolate': 0.84; 'pavement': 0.84; 'received:74.208.4.194': 0.84 Date: Tue, 01 Jan 2013 11:42:28 -0500 From: Dave Angel User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:16.0) Gecko/20121011 Thunderbird/16.0.1 MIME-Version: 1.0 To: python-list@python.org Subject: Re: got stuck in equation References: <2043e377-00d8-49d7-a35a-0c52c869f70f@googlegroups.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Provags-ID: V02:K0:fNd3bSLrasTF+a0+BhzFU5kU/ew/qOzyFLLJ0iFg434 zH5x0XJPrX2buzEZObBmxzmFBMqhpqo4cL5i8JM/XY3cQdJCZq prlz94V+ld6CvHFlWeb3EiiqFkAoGZITpA0YeZADjlv3bqSKSg yA0D2fnsdXL6CaISVd1vcWXTUk0ufidVF29AWaf3XGvtDXVf0L qZ0309BFcs6oRP8X7GDZmbKHJOyNA3210OQCVc+j87cSThh3Ke z66Q4yXxmD/P/oXeVZPpHd32egSDsbzkOyQX1nkB5GZr6SyXOj JEv9hrk6fBKlttZ5DgJiWQZQhKRncxthV7qp5DqeTqtC+0aRg= = X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: d@davea.name List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 47 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1357058568 news.xs4all.nl 6899 [2001:888:2000:d::a6]:58493 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:35894 On 01/01/2013 11:03 AM, Chris Angelico wrote: > On Wed, Jan 2, 2013 at 2:40 AM, wrote: >> hi . . my name is usama khan >> i am the student of civil engeering and we got assignment to make a project program on flexible pavement design using python. >> >> i know very litle about programing. still learning from tutorials. u can call me a beginner. >> now i need to solve this equation so that i can put this in python but the formula of design is very complex >> >> Formula is : >> >> log(W18) = (Z)(S)+9.36log(SN+1) -2.0+(log(dpsi/(4.5-1.5))(/(.40+1094/(SN+1)^2.5)+2.32log(Mr-)-8.07 >> >> every thing is constant except this SN. . i want to seperate SN like SN= rest of the stuff. how can i seprate it because manualy its impossible to take SN out. >> so plz help me out > This isn't a Python question, it's an algebra one. I don't know what > Z, S, and so on are, but for the most part, the basic rule of solving > equations applies: Do the same thing to both sides and it's still > true. Work on it until you can isolate SN on one side. Such a rule may not be able to solve an equation when there SN appears more than once on the RHS, and where it's inside a transcental function. I don't consider this an algebra problem, but a programming problem. > I don't know what this bit means, though: > > 2.32log(Mr-) > > Is this a transcription error? You can't subtract nullness from something. > > ChrisA Mr- was apparently intended to mean "M sub r", the subgrade resilient modulus (in psi). Just a number. The only thing i know about any of this is from here: http://classes.engr.oregonstate.edu/cce/winter2012/ce492/Modules/06_structural_design/06-3_body.htm -- DaveA