--- title: "Parallel Resistors" type: "article" slug: "parallel-resistors" url: "http://localhost/article/parallel-resistors/" markdown_url: "http://localhost/article/parallel-resistors.md" published_at: "2026-01-16T14:29:10+00:00" modified_at: "2026-01-16T14:29:11+00:00" featured_image: url: "http://localhost/wp-content/uploads/2022/04/20230809-041332.jpg" excerpt: "Short routine to calculate the value of resistors in parallel. 5 REM \"RES. IN PAR.\" 10 PRINT \"ENTER RES. REQD.\" 20 INPUT A 30 FOR N=2 TO 200 40 LET X=A*N 50 LET Y=X/(N-1) 60 PRINT AT 21,0;X,Y; 70 SCROLL 80 NEXT N" category: - name: "QZX" slug: "qzx" taxonomy: "category" url: "http://localhost/category/periodicals/qzx/" post_tag: - name: "TS 1000" slug: "ts1000" taxonomy: "post_tag" url: "http://localhost/tag/ts1000/" - name: "Type-in program" slug: "type-in-program" taxonomy: "post_tag" url: "http://localhost/tag/type-in-program/" model: - name: "Timex/Sinclair 1000" slug: "ts-1000" taxonomy: "model" url: "http://localhost/model/ts-1000/" indiv: - name: "Gary Gorniak (W9BS)" slug: "gary-gorniak-w9bs" taxonomy: "indiv" url: "http://localhost/indiv/gary-gorniak-w9bs/" publication_r: id: 21219 title: "QZX" type: "periodical" url: "http://localhost/periodical/qzx/" authors_r: - name: "Gary Gorniak (W9BS)" slug: "gary-gorniak-w9bs" taxonomy: "indiv" url: "http://localhost/indiv/gary-gorniak-w9bs/" volume: "2" issue: "3" issues_articles: - id: 49025 title: "QZX v2 n3" type: "issue" url: "http://localhost/issue/qzx-v2-n3/" pages: "3" pubdate: "February 1984" archive_link: false --- # Parallel Resistors Short routine to calculate the value of resistors in parallel. ``` 5 REM "RES. IN PAR." 10 PRINT "ENTER RES. REQD." 20 INPUT A 30 FOR N=2 TO 200 40 LET X=A*N 50 LET Y=X/(N-1) 60 PRINT AT 21,0;X,Y; 70 SCROLL 80 NEXT N ```