Talk:Pascal's triangle: Difference between revisions

(→‎J Explanation: new section)
 
(21 intermediate revisions by 8 users not shown)
Line 1:
== Right Output Format? ==
ThwThe task bdescriptiondescription says the tringletriangle looks like this:
<pre> 1
1 1
Line 14:
I think that maybe all example output should follow the task description format of an isosceles triangle. --[[User:Paddy3118|Paddy3118]] 08:59, 27 December 2009 (UTC)
:That's not always easy to do. I think the important part of the task is the generation of each row. We don't need to complicate it with output formatting that isn't important to the theory involved. --[[User:Mwn3d|Mwn3d]] 18:37, 27 December 2009 (UTC)
 
::: It seems easy enough to do, just indent: &nbsp; '''Total Rows-Current Row'''. &nbsp; -- [[User:Gerard Schildberger|Gerard Schildberger]] 22:12, 2 November 2012 (UTC)
 
:::: (For further edification and clarification): &nbsp; indent each displayed row with: &nbsp; &nbsp; value('''totalRows &nbsp; ''minus'' &nbsp; currentRow). &nbsp; &nbsp; -- [[User:Gerard Schildberger|Gerard Schildberger]] ([[User talk:Gerard Schildberger|talk]]) 20:33, 18 July 2016 (UTC)
 
::Need it or not, the Python~2 code as available strays from theory by virtue of the return statement. I submit that completeness and conformity trumps raw theory in the case of code examples and would serve an additional segment of the public with formatting applied. I further submit the following as alternative and addition to present code under the potential heading of "Traditionally Formatted, Python~3":
::<lang python>def pascal(n):
# Prints n rows of Pascal's triangle, traditionally formatted.
# Good for 1 <= n <= 20 rows.
# Beyond n = 20, digits exceed allotted character space
# and overlap occurs.
row = [1]
k = [0]
z = n-1
for x in range(n):
tabs = ' '*z
for i in range(len(row)):
row[i] = str(format(row[i], '6d'))
print(tabs+''.join( row[i] for i in range(len(row)) ) )
for i in range(len(row)):
row[i] = int(row[i])
row=[l+r for l,r in zip(row+k,k+row)]
z -= 1</lang>Likely, there are more elegant formatting methods. This is to my ability. --[[User:Jnever1|Jnever1]] 04:35, 14 March 2012 (UTC)
 
::Easy or not, it's what makes Pascal's triangle a ... well, a triangle. Having the output in a triangle is what shows (easlily) what the relationship is between any number and the two above it, assuming that the "above" numbers in the line are formatted properly. Next thing you know, Latin squares will be acceptable as all the numbers on one line. It should be an easy thing to insert some blanks before/between the numbers. -- [[User:Gerard Schildberger|Gerard Schildberger]] 19:07, 14 May 2012 (UTC)
 
::FWIW my two cents on this is that it's easy enough to tilt your head left 45&deg; :). It's not stated in the problem text, but I saw this task as an exercise in creating the triangle itself, and the extra code to format it properly can obfuscate the more important underlying logic. I agree it's not hard, but even so, for a beginning programmer to sift through which logic applies to which issue can be difficult. I think a separate formatting task would be a great way to address this. --[[User:MikeLorenz|Mike Lorenz]] 13:28, 3 November 2012 (UTC)
 
== J Explanation ==
Line 57 ⟶ 84:
<lang j>|."_1</lang> rotate each item (each row of characters) by the indicated amount (rotation would be moving contents left except that the amounts are negative).
<lang j>-@|.</lang> reverse and negate the argument (resulting in the negative sequence _4 _3 _2 _1 0)
 
 
== first imagined by Pascal? are you sure? ==
 
In the very first line of the description it's said:
<pre>
Pascal's triangle is an arithmetic and geometric figure first imagined by Blaise Pascal.
</pre>
 
In addition Pascal drown it as a square triangle while all former representations were isosceles: in the task is shown as isosceles so it is no way the Pascal's triangle (see also the discussion above).
 
The wikipedia page linked shows a chinese document dated 1303 and the text:
<pre>
The title reads "The Old Method Chart of the Seven Multiplying Squares"
</pre>
 
 
here an excerpt from the introduction as can be found in my [https://github.com/LorenzoTa/Tartaglia-s-triangle program about the triangle]
 
<pre>
In Italy, the arithmetic triangle is called Tartglia's triangle, because exposed in the "General trattato di numeri et misure" written in 1556 by Niccolò Fontana (1499 ca, Brescia 13 December 1557, Venice), known also as Tartaglia.
...
Known as Pascal's triangle (but Pascal drown it as right triangle) in many other countries was known by Halayuda, an Indian commentator, in 10th century, studied around 1100 by Omar Khayyam, a Persian mathematician, known in China as early as 1261 and so studied in India, Greece, Iran, China, Germany and Italy before Pascal.
</pre>
 
So I definitively vote to change the first sentence from:
<pre>
Pascal's triangle is an arithmetic and geometric figure first imagined by Blaise Pascal.
</pre>
to
<pre>
Pascal's triangle is an arithmetic and geometric figure named, in most of the western countries, after Blaise Pascal.
</pre>
:Why "in most of the western countries"? Are there countries where this is another Pascal? No. It's named after Blaise Pascal, period. That does not imply Pascal was the inventor, or that there are no other names. Likewise, the "triangolo di Tartaglia" is named after Niccolò Tartaglia, and no other Tartaglia (and not Pascal, obviously). [[User:Eoraptor|Eoraptor]] ([[User talk:Eoraptor|talk]]) 01:06, 23 February 2018 (UTC)
 
::you are absolutely right [[User:Eoraptor|Eoraptor]] I just reported a 'neutral' sentence from [https://en.wikipedia.org/wiki/Pascal%27s_triangle wikipedia]:
<pre>
In much of the Western world, it is named after French mathematician Blaise Pascal, although other mathematicians studied it centuries before him in India,[1] Persia (Iran), China, Germany, and Italy.
</pre>
 
::I just mean with my sentence that there are also western country as Italy for example where it's called otherwise. The triangle has many names: Staircase of Mount Meru, Khayyam triangle, Yang Hui's triangle, Tartaglia's triangle and obviously Pascal's triangle.
::I'm not able to reproduce a geographical distribution of different names: what i proposed was for sure an approximation but byfar better than the original, wrong, one. --[[User:LorenzoTa|LorenzoTa]] ([[User talk:LorenzoTa|talk]]) 08:20, 23 February 2018 (UTC)
:::You are right, and I perfectly agree with the edit. [[User:Eoraptor|Eoraptor]] ([[User talk:Eoraptor|talk]]) 12:21, 24 February 2018 (UTC)
 
== javascript ==
 
Works with console but can we have a webpage version?--[[User:Xdv|xarilaos]] ([[User talk:Xdv|talk]]) 15:19, 12 February 2022 (UTC)
 
: Yes you can. Feel free. --[[User:Thundergnat|Thundergnat]] ([[User talk:Thundergnat|talk]]) 15:25, 12 February 2022 (UTC)
 
: Exactly – web pages and the Document Object Model are not part of ECMAScript (which defines the JavaScript language), and JavaScript is not restricted to embedding in browsers, but there is nothing to stop someone adding an example of JavaScript interacting with a web page. [[User:Hout|Hout]] ([[User talk:Hout|talk]]) 15:28, 12 February 2022 (UTC)
9,655

edits